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

宏##

时间:2014-07-19 15:15:52      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   2014   io   re   

##是连接符号,连接两个宏

eg:
#include <iostream>

#define s5(a) supper_##a

void supper_printf(const char* p )
{
printf("this is supper printf:\n%s\n",p);
}

int main()
{
s5(printf)("hello owrld");

std::cout<<"Over"<<std::endl;
getchar();
return 0;
}

 

bubuko.com,布布扣

宏##,布布扣,bubuko.com

宏##

标签:blog   http   os   2014   io   re   

原文地址:http://www.cnblogs.com/tiancun/p/3854133.html

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