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

我写了3个文件,一个类声明,一个写类的接口,还有一个使用类的程序,为什么
编译借口文件的时候总提示 [Linker error] undefined reference to `WinMain@16'
ld returned 1 exit status

谢谢啦

搜索更多相关主题的帖子: 文件 编译 
2007-09-18 11:22
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 
are you writing a GUI program or a console program?

Console program does not call WinMain(), it calls main().

I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-09-18 11:33
flyingni
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-8
收藏
得分:0 
回复:(flyingni)请教一下关于类文件编译的问题
就是在devc++里面打开source文件然后写的啊,不理解你说的那2个术语。。。
2007-09-18 12:20
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 
回复:(flyingni)回复:(flyingni)请教一下关于类...

If that happens, try the following (without using any IDE).
The baisc idea is still:

edit sourc code --> compile --> link --> run

Step 1: edit source code

prepare 3 files as follows (using any text editor):

class.h


class A
{
public:
A(int i_=0);
void print() const;
private:
int i;
};

class.cpp

程序代码:

#include \"class.h\"
#include <iostream>

A::A(int i_) : i(i_)
{

}

void A::print() const
{
std::cout<<i<<std::endl;
}

main.cpp


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


int main()
{
A a(3);
a.print();

return 0;
}

Step 2: compile and link

Open a command prompt window, and run

C:\Dev-Cpp\bin\g++ main.cpp class.cpp

Step 3: run

run a.exe


I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-09-18 12:45
flyingni
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-8
收藏
得分:0 
回复:(flyingni)回复:(flyingni)请教一下关于类...

不好意思,第2步里面输入的命令和自己文件存放的位置有关吗?麻烦能说清楚些不,我是新手,好多不明白的

2007-09-18 15:00
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 
回复:(flyingni)回复:(flyingni)回复:(flying...
see picture.
图片附件: 游客没有浏览图片的权限,请 登录注册

[此贴子已经被作者于2007-9-18 15:22:17编辑过]


I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-09-18 15:20
flyingni
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-8
收藏
得分:0 
回复:(flyingni)回复:(flyingni)回复:(flying...
问题解决啦,太谢谢了!关于这方面的东西有教材之类的吗?
2007-09-18 16:57
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 
Are you self-learning programming?

If you have a teacher, he should have taught you this "climb" step before the "walk" step (using IDE).

I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-09-18 19:16
flyingni
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-8
收藏
得分:0 
回复:(flyingni)回复:(flyingni)回复:(flying...
我是一个人课余时间在学的,有什么好的方法吗
2007-09-19 14:31
快速回复:请教一下关于类文件编译的问题
数据加载中...
 
   



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

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