Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类: C/C++
2008-04-15 21:18:56
1、调试标记 适用预处理#define定义一个或多个调试标记,在代码中把调试部分使用#ifdef和#endif进行管理。当程序最终调试完成后,只需要使用#undef标记,调试代码就会消失。常用的调试标记为DEBUG, 语句序列: #define DEBUG#ifdef DEBUG调试代码#endif 2、运行期间调试标记 在程序运行期间打开和关闭调试标记。通过设置一个调试bool标记可以实现。这对命令行运行的程序更为方便。例如下面代码: #include#include using namespace std;bool debug =false;int main(int argc,char*argv[]) { for(int i=0;ibool go=true;while(go){ if(debug) {调试代码 }else {}}} 3、把变量和表达式转换成字符串 可是使用字符串运算符来实现转换输出定义 #define PR(x) cout<<#x”=”< 4、c语言的assert() 该宏在中,,当使用assert时候,给他个参数,即一个判读为真的表达式。预处理器产生测试该断言的代码,如果断言不为真,则发出一个错误信息告诉断言是什么以及它失败一会,程序会终止。 #include< assert>using namsapce std; int main(){ int i=100; assert(i!=100); //Fails}当调试完毕后在#include 前加入#define NDEBUG即可消除红产生的代码}
#define DEBUG#ifdef DEBUG调试代码#endif
#include#include using namespace std;bool debug =false;int main(int argc,char*argv[]) { for(int i=0;ibool go=true;while(go){ if(debug) {调试代码 }else {}}}
debug =false;int main(int argc,char*argv[])
{ for(int i=0;ibool go=true;while(go){ if(debug) {调试代码 }else {}}}
#define PR(x) cout<<#x”=”<
#include< assert>using namsapce std; int main(){ int i=100; assert(i!=100); //Fails}当调试完毕后在#include 前加入#define NDEBUG即可消除红产生的代码}
int main(){ int i=100;
assert(i!=100);
//Fails}当调试完毕后在#include 前加入#define NDEBUG即可消除红产生的代码}
前加入#define NDEBUG即可消除红产生的代码}
上一篇:用C语言技术进行CGI程序设计 (5)
下一篇:C++中控制Windows关机的实用技巧 (1)
登录 注册