摘要: ```cpp #include #define LOCAL //无参宏 //条件编译 #ifdef LOCAL int a=1; #else int a=2; #endif #ifndef LOCAL int b=1; #else int b=2; #endif #define PI 3.1415926535 //有参宏 #define max_wrong(a,b) a>b?a:b #define 阅读全文
posted @ 2020-02-27 18:26 chwhc 阅读(190) 评论(1) 推荐(0) 编辑