摘要:
自定义类printf变参数的输出函数,常用于调试在C99下可以使用如下方法:#ifdef DEBUG#include <stdio.h> #define debug(fmt, x...) \do \{ \ printf("%s %s(Line %d): "fmt,__FILE__,__FUNCTION__,__LINE__, ##x); \}while(0)#else#define debug(fmt, x...)#endif或者#ifdef DEBUG#include <stdio.h> #define debug(...) \do \{ \ pr 阅读全文