#ifndef -> if not define
配合 #endif使用
在h头文件中使用,防止重复包含和编译。
也可以用条件编译来实现。
例如:
编写头文件 test.h
在头文件开头写上两行:
#ifndef _TEST_H_
#define _TEST_H_//一般是文件名的大写
...codes...
#endif
#ifndef -> if not define
配合 #endif使用
在h头文件中使用,防止重复包含和编译。
也可以用条件编译来实现。
例如:
编写头文件 test.h
在头文件开头写上两行:
#ifndef _TEST_H_
#define _TEST_H_//一般是文件名的大写
...codes...
#endif