美文网首页
使用#define宏处理函数定义

使用#define宏处理函数定义

作者: CodingCode | 来源:发表于2024-06-04 00:40 被阅读0次
    #include <stdio.h>
    
    #define DEBUG
    
    #ifdef DEBUG
      #define PRINT        printf
      // or
      //#define PRINT(...)   printf(__VA_ARGS__)
    #else
      #define PRINT(...)
    #endif
    
    
    int main(int argc, char *argv[]) {
      PRINT("Hello");
      PRINT("Thanks %s", "Bye!");
    }
    

    相关文章

      网友评论

          本文标题:使用#define宏处理函数定义

          本文链接:https://www.haomeiwen.com/subject/krxyqjtx.html