摘要: 一种方式:#define __DEBUG #ifdef __DEBUG printf(xxx); #endif缺点是:每条输出语句都被两条语句包围着 另一种方式:#ifdef __DEBUG #define DEBUG(info) printf(info) #else #define DEBUG(i 阅读全文
posted @ 2021-09-06 17:44 我爱茜茜公主 阅读(36) 评论(0) 推荐(0)