码迷,mamicode.com
首页 > 编程语言 > 详细

C语言宏定义

时间:2015-12-07 18:34:50      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include<stdio.h>
 2 #include<unistd.h>
 3 
 4 /* #是"字符串化"的意思,出现在宏定义中的#是把跟在后面的参数转换成一个字符串 */
 5 #define LOG_ERROR(err) fprintf(stderr, #err)
 6 
 7 /* "##"是一种分隔连接方式,它的作用是先分隔,然后进行强制连接. */
 8 #define test(type, name) type type##_##name
 9 #define test2(type, name) type type_##type##_name_##name
10 
11 void main(void)
12 {
13     test(int, num);
14     test2(int, num);
15     LOG_ERROR(1234);
16 }

以上代码段 test.c 经过宏展开后的代码如下:

/* gcc -E test.c */

void main(void)
{
    int int_num;
    int type_int_name_num;
    fprintf(stderr, "1234");
}

 

C语言宏定义

标签:

原文地址:http://www.cnblogs.com/licongyu/p/5026478.html

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