新手c++头文件链接问题
就是谭浩强那本c++中的252页中的一个例题
//student.h
class student
{
public:
void display();
private:
int num;
char name[20];
char sex;
};
//student.cpp
#include <iostream>
#include "student.h"
using namespace std;
void student::display()
{
cout<<"num:"<<num<<endl;
cout<<"name:"<<name<<endl;
cout<<"sex:"<<sex<<endl;
}
//main.cpp
#include<iostream>
#include"student.h" (问题就在这原书是包含了student.h文件,我在编译时是正确的可在链接是有一个错误,把它 改为student.cpp就可以了,不知道什么原因那位给解释一下 谢谢了)
void main()
{
student s;
s.display();
}