哪位大哥帮帮小弟啊!!!!!
下面代码连接时老出错!
不清楚加q聊:::::752729395
///////////////////////////////////////在"Stack.h"中
#include<iostream.h>
#include<windows.h>
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#ifdef StackElemType
#else
#define StackElemType char
#endif
class Stack
{
public:
bool GetTop(StackElemType &);
StackElemType *base;
StackElemType *top;
int stacksize;
};
//////////////////////////////////////////////在"Stack.cpp"中
#include<iostream.h>
#include"Stack.h"
bool Stack::GetTop(StackElemType &e)
{
if(top==base)
return 0;
e=*(top-1);
return 1;
}
/////////////////////////////////////////在"main.cpp"中
#include<iostream.h>
///////////////////////////////////////////
struct BiTree; /////
#define StackElemType BiTree* ////////////
#include "Stack.h" /////
///////////////////////////////////////////
#define ElemType char
struct BiTree
{
ElemType data;
BiTree *lchild,*rchild;
};
void Fun(BiTree* T)
{
BiTree* e;
Stack S;
S.GetTop(e);
}
void main()
{
BiTree* T;
Fun(T);
}
//代码实现把栈封装成C++类,并由调用文件指定栈元素;
//代码只是部分;有兴趣可加Q拿完整代码
[求助]关于C++类的多文件编译出错[C++]