Defined() 操作符 令牌粘贴(##)运算符 参数化宏 Defined() 操作符 #include <stdio.h> #if !defined (MESSAGE) #define MESSAGE "You wish!" #endif int main(void) { printf("Here is the message: %s\n", MESSAGE); return 0; } 令牌粘贴(##)运算符 参数化宏