| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 273 人关注过本帖
标题:[求助]关于C++类的多文件编译出错[C++]
只看楼主 加入收藏
oceanshantou
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-10-24
收藏
 问题点数:0 回复次数:0 
[求助]关于C++类的多文件编译出错[C++]

哪位大哥帮帮小弟啊!!!!!
下面代码连接时老出错!
不清楚加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拿完整代码

搜索更多相关主题的帖子: 大哥 top include public 
2007-10-24 18:56
快速回复:[求助]关于C++类的多文件编译出错[C++]
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015985 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved