条件编译 。。
#define HBDEBUG
#ifdef HBDEBUG
#define Log(a,...) printf(a,##__VA_ARGS__)
#else
#define Log(a)
#endif
条件编译 。。
#define HBDEBUG
#ifdef HBDEBUG
#define Log(a,...) printf(a,##__VA_ARGS__)
#else
#define Log(a)
#endif
2620
1044

被折叠的 条评论
为什么被折叠?