认真看一下就会了
三个语句
C++代码的分离主要也就是三个语句 #ifndef , #define #endif.头文件名称在 #ifndef后面需要全部大写,看下面的代码吧!两个文件必须在同一个文件夹之下才能正常运行. 为了方便说明这个分离其实也没有什么,我就写了这两个极简的程序,免得一看代码太长同学们失去了看的兴趣.把他们合并在有个文件里面也是意见很轻松的事情.
main.cpp
#include "iostream"
#include "student.h"
using namespace std;
int main()
{
print_hello();
return 0;
}
student.h
#include "iostream"
using namespace std;
#ifndef _STUDENT_H_
#define _STUDENT_H_
void print_hello()
{
cout<<"hello wrold!"<<endl;
}
#endif