宏定义 #号 ##号

来源:互联网 发布:java实现飞机大战源码 编辑:程序博客网 时间:2024/04/29 04:18

/*

When a macro parameter is used with a leading ‘#’, the preprocessor replaces
it with the literal text of the actual argument, converted to a string constant.

#define WARN_IF(EXP) /
do { if (EXP) /
printf ("Warning: " #EXP "/n"); } /
while (0)

*/

#define NUM2STRING(X) printf(#X);

int main()
{
 NUM2STRING(200);
 return 0;

 

/*

When a macro is expanded, the two tokens on either side of each ‘##’ operator are combined
into a single token, which then replaces the ‘##’ and the two original tokens in the macro
expansion.

*/

//下面的赋值方式就可以体现出这两个标识符具体的用处

struct command  
{

char *name;  
void (*function) (void);

};

 
struct command commands[] =

{

{ "quit", quit_command },

{ "help", help_command },  
...  
};  

#define COMMAND(NAME) { #NAME, NAME ## _command }
struct command commands[] =
{
COMMAND (quit),
COMMAND (help),
...
};

原创粉丝点击