#和##用法

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 16:21   1904   0
/********************************************* 
 *关于#和##的特殊用法:在宏定义中,使用前缀#,
 *宏展开时 ,会把修饰的符号自动在两边加上双引号 
 *把它展开为字符串,而##则是把两端的符号连接起
 *来,但是不会继续展开为字符串,eg如下所示 
 ********************************************/
#include <stdio.h>
#define printf_x(x) printf(#x"=%s\n",#x);
#define sort(x) Sort ## x
void Sort0()
{
 printf("sort0");
}
void Sort1()
{
 printf("sort1");
}
void Sort2()
{
 printf("sort2");
}
void Sort3()
{
 printf("sort3");
}
void Sort4()
{
 printf("sort4");
}
int main(int argc, char *argv[])
{
 /* #h号示例 */
 printf_x(doyouknow?);
 /* ##号示例 */
 sort(4)();
 return 0;
}

结果图:


转载于:https://www.cnblogs.com/arbboter/archive/2012/11/21/4225216.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP