码迷,mamicode.com
首页 > 其他好文 > 详细

【转】宏定义中#和##的使用

时间:2018-11-27 22:04:32      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:http   turn   htm   log   www   include   html   target   class   

https://www.cnblogs.com/zhongzhe/p/3892682.html

 

#的功能是将其后面的宏参数进行字符串化操作(Stringfication),简单说就是在对它所引用的宏变量通过替换后在其左右各加上一个双引号

##被称为连接符(concatenator),用来将两个Token连接为一个Token,##符是把传递过来的参数当成字符串进行替代。

 1 #include<cstdio> 
 2 #include<climits>
 3 using namespace std; 
 4 #define STR(s) #s 
 5 #define CONS(a,b) int(a##e##b)
 6 int main() 
 7 { 
 8     printf(STR(vck)); // 输出字符串"vck" 
 9     printf("%d\n",  CONS(2,3)); // 2e3 输出:2000
10  return 0; 
11 }

 

【转】宏定义中#和##的使用

标签:http   turn   htm   log   www   include   html   target   class   

原文地址:https://www.cnblogs.com/KonjakJuruo/p/10029129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!