宏连接符与括号
摘要:
#include <stdio.h> int testFunc() { printf("test\n"); } /* 使用宏连接符 ##,宏参数与括号不需要使用 ## 连接 */ #define TEST(x) test##x(); int main() { TEST(Func) return 0; 阅读全文
posted @ 2023-10-06 23:31 Tricker_5 阅读(12) 评论(0) 推荐(0) 编辑