VC6.0中如何多文件编译连接啊~(我是新手实在不会)
VC6.0中如何多文件编译连接啊~(跪求答案)//golf.h 包含空间名定义的头文件
#ifndef GOLF_H_
#define GOLF_H_
namespace go
{
const int Len=40;
struct golf
{
char fullname[Len];
int handicap;
};
void setgolf(golf & g,const char * name,int hc);
int setgolf(golf & g);
void handicap(golf & g,int hc);
void showgolf(const golf & g);
}
#endif
//golf.cpp对应上面头文件的函数定义
#include<iostream>
#include"golf.h"
namespace go
{
using std::cout;
using std::cin;
using std::endl;
void setgolf(golf & g,const char * name,int hc)
{
strcpy(g.fullname,name);
g.handicap=hc;
}
int setgolf(golf & g)
{
cout<<"Enter a name: ";
cin.getline(g.fullname,40);
cin.ignore(1024,'\n');
cout<<"Enter a scores: ";
cin>>g.handicap
cout<<endl;
}
void handicap(golf & g,int hc)
{
g.handicap=hc;
}
void showgolf(const golf & g)
{
cout<<g.fullname<<endl<<g.handicap<<endl;
}
//91main.cpp main()功能函数定义
#include<iostream>
#include"golf.h"
int main()
{
using go::golf;
using go::setgolf;
using go::handicap;
using go::showgolf;
golf jjyy;
golf xiha;
golf hd;
char * ch="my name is wen sheng ';
int t=90,n=66;
setgolf(jjyy,ch,t);
showgolf(jjyy);
setgolf(xiha);
showgolf(xiha);
handicap(hd,n);
showgolf(hd);
return 0;
}
我是新手从来没弄过多文件编译连接,我的思路就是首先定义个头文件以空间名称的形式包含所有变量和函数原型定义。接着用glof.cpp对应头文件中的函数原型的定义,最后用91main.cpp调用这些函数实现功能。
我不知VC6.0如何操作编译多文件,请大家告诉我别且试试我的源程序是否能通过,我自己按自己的方法试验了下说是找不到头文件,摆脱大家了~
[[it] 本帖最后由 沿途有鬼 于 2008-8-3 13:58 编辑 [/it]]