1.一般头文件的首段和末端这样写:
- #ifndef STDIO_H(头文件名)
-
#define STDIO_H
-
-
....
-
-
#endif
2.软件在编写过程中要输出一些测试信息以便自己查错可以这样写:
- #define DEBUG(此行代码应写入头文件中)
-
-
#ifdef DEBUG
-
printf("this is error!");
-
#endif
当软件发布的时候就可以讲头文件中的#define DEBUG注释掉。
3.extern “C”,在C++程序中经常用到的代码框架如下:
- #ifdef __cplusplus
-
extern "C"{
-
#endif
-
-
//code
-
//code
-
-
#ifdef _cplusplus
-
}
-
#endif
阅读(824) | 评论(0) | 转发(0) |