| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 854 人关注过本帖
标题:问个编译器问题
只看楼主 加入收藏
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
 问题点数:0 回复次数:14 
问个编译器问题

我写程序为什么不能包含我定义文件:
如:
#ifndef DATE_H
#define DATE_H
class date
{int mo,da;
public:
date(int i,int j)
{mo=i;da=j;
}
void display()const
{cout<<mo<<'-'<<endl;
}
};
#endif

#include<iostream.h>
#include "date.h"《编译器说这里有错》
int main(int argc,char *argv[])
{date t(12,31);
t.display();
return 0;
}
我的不能编译编译,运行它,才学c++还好多不知道,谢谢批评~~~~~
谢谢回复

搜索更多相关主题的帖子: 编译 
2007-03-13 18:29
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 
我用的是c-free3.5
2007-03-13 18:31
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 

#include<iostream>
using namespace std;

#ifndef DATE_H


#define DATE_H
class date
{int mo,da;
public:
date(int i,int j)
{
mo=i;
da=j;
}
void display() const
{
cout<<mo<<"-"<<endl;
}
};
#endif


int main(int argc,char *argv[])
{
date t(12,31);

t.display();
return 0;
}
注释要用//


也可以这样,把她做两个文件*.h,*.cpp.编译时放在同一个文件下
#include<iostream>
using namespace std;

#ifndef DATE_H


#define DATE_H
class date
{int mo,da;
public:
date(int i,int j)
{
mo=i;
da=j;
}
void display() const
{
cout<<mo<<"-"<<endl;
}
};
#endif //保存文件名为data.h;



#include<iostream>
#include"data.h"
using namespace std;

int main(int argc,char *argv[])
{
date t(12,31);

t.display();
return 0;
}

[此贴子已经被作者于2007-3-13 19:22:57编辑过]


Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-03-13 19:11
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 
xie谢谢版主~~~~~我一定好好记住
2007-03-13 20:56
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 
还问一下,我的编译器怎么,对2的一种方法不行??
2007-03-13 21:04
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 
我用VC++ 测试过了,可以的.

你用的什么编译器,错误提示是什么呢?
可能是你文件的保存方式不对吧,头文件*.h,*.pp.文件要在一个文件夹下,编译*.cpp文件就好了.

Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-03-13 21:29
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 

谢谢
我的是C-free3.5
我也想用vc++可是我在运行的时候,说不可以执行??我也不知道怎么搞??
谢谢版主知道怎么做不?帮帮忙~~~

2007-03-14 09:57
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 
哦我没说清楚~我的vc++编译没错就是说:不可以执行
2007-03-14 10:00
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 
以下是引用shizhusz110在2007-3-14 9:57:32的发言:

谢谢
我的是C-free3.5
我也想用vc++可是我在运行的时候,说不可以执行??我也不知道怎么搞??
谢谢版主知道怎么做不?帮帮忙~~~

不会出现这样的问题吧,我用VS2005,和VC++6.0都编译过了,且没有出现你说的那个情况呀


Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-03-14 21:36
shizhusz110
Rank: 1
等 级:新手上路
帖 子:307
专家分:0
注 册:2006-12-21
收藏
得分:0 

谢谢斑竹!!你的是没问题??我的编译起有问题??
我的vc不能执行:出现个对话框,显示:”无法执行“的字
谢谢
那在vs2005怎么做c++???我搞了好就都没做好,谢谢

2007-03-14 21:44
快速回复:问个编译器问题
数据加载中...
 
   



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

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