管理调试信息

一种方式:
#define __DEBUG #ifdef __DEBUG printf(xxx); #endif
缺点是:每条输出语句都被两条语句包围着

  

另一种方式:
#ifdef __DEBUG #define DEBUG(info) printf(info) #else #define DEBUG(info) #endif
缺点:printf是支持多个参数的,且参数不定

//============================================================================  
// Name : debug.cpp  
// Author : boyce  
// Version : 1.0  
// Copyright : pku  
// Description : Hello World in C++, Ansi-style  
//============================================================================  
#include  "debug.h"

#define __DEBUG__  
#ifdef __DEBUG__  
#define DEBUG(format,...) printf("File: "__FILE__", Line: %05d: "format"\n",         __LINE__, ##__VA_ARGS__)  
#else  
#define DEBUG(format,...)  
#endif  

int main() {  
    char str[]="Hello World";  
    DEBUG("A ha, check me: %s",str);  
    return 0;  
} 

输出:
File: applications\main.c, Line: 00191: A ha, check me: Hello World

  

参考文章:地址

 

管理调试信息

上一篇:【飞项】轻量级多人协作软件,让团队高效协同


下一篇:k8s master节点报错