01,h和cpp
编译的过程
.cpp ->.i ->,s-> ,o 链接形成.out 执行文件
.h
.cpp
header = interface
.cpp include .h
编译预处理
#include 语句在编译前把文本放在cpp文件#include的前面
gcc的一个问题语句:
duplicate symbol _global in
g++在所有的变量的名字加上一个下划线
.h的文件里面应该放声明
声明是什么?(头文件写那些东西)
extern vaiables
function prototypes
class/struct declaration
头文件
#define _My_h //宏
#ifdndef _My_h
//执行这里的code
#endif