适用预处理#define定义一个或多个调试标记,在代码中把调试部分使用#ifdef和#endif进行管理。当程序最终调试完成后,只需要使用#undef标记,调试代码就会消失。常用的调试标记为DEBUG, 语句序列:
2、C++编程-运行期间调试标记
- #define DEBUG
- #ifdef DEBUG
- 调试代码
- #endif
在程序运行期间打开和关闭调试标记。通过设置一个调试bool标记可以实现。这对命令行运行的程序更为方便。例如下面代码:
- #include
- #include
- using namespace std;
- bool debug =false;
- int main(int argc,char*argv[])
- {
- for(int i=0;i
可是使用字符串运算符来实现转换输出定义
- #define PR(x) cout<<#x”=”<
4、C++编程-C语言的assert()
该宏在
- #include< assert>
- using namsapce std;
- int main()
- {
- int i=100;
- assert(i!=100);
- //Fails
- }
- 当调试完毕后在#include前
- 加入#define NDEBUG即可消除红产生的代码
- }
【编辑推荐】