宏定义中的###操作符和... _ _VA_ARGS_ _解析
Posted qlexcel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了宏定义中的###操作符和... _ _VA_ARGS_ _解析相关的知识,希望对你有一定的参考价值。
#
#符号作为一个预处理运算符,它可以把语言符号转化成字符串。例如,如果x是一个宏参量,那么#x可以把参数名转化成相应的字符串。该过程称为字符串化(stringizing)。
例子
#incldue <stdio.h>
#define PSQR(x) printf("the square of" #x "is %d.\\n",(x)*(x))
int main(void)
{
int y =4;
PSQR(y);
PSQR(2+4);
return 0;
}
输出结果:
the square of y is 16.
the square of 2+4 is 36.
第一次调用宏时使用“y”代替#x;第二次调用时用“2+4"代#x。
##
##运算符把两个语言符号组合成单个语言符号。
例子1
定义宏定义:
#define XNAME(n) x##n
如下方式调用:
XNAME(4)
得到:
x4
可见,把“x##n”种的n替换为4,然后“##”运算符再把前后组合成单个符号。
例子2
#include <stdio.h>
#define XNAME(n) x##n
#define PXN(n) printf("x"#n" = %d\\n",x##n)
int main(void)
{
int XNAME(1)=12; //等效为:int x1=12;
PXN(1); //等效为:printf("x1 = %d\\n", x1);
return 0;
}
输出结果:
x1=12
可变参数宏…和_ _VA_ARGS_ _
…和_ _VA_ARGS_ _是组合使用的,用在不确定参数个数的场合中。
例子1
#define PR(...) printf(__VA_ARGS__)
int main()
{
int wt=1,sp=2;
PR("hello\\n");
PR("weight = %d, shipping = %d",wt,sp);
return 0;
}
输出结果:
hello
weight = 1, shipping = 2
如上,printf为一个函数,此函数的参数可能为一个,如"hello\\n";也可能为3个,如"weight = %d, shipping = %d",wt,sp。不能确定,那么就用_ _VA_ARGS_ _,编译的时候_ _VA_ARGS_ _会被…的内容替代。
例子2
定义宏定义
#define LOG_I(...) dbg_print("INFO", char * fun, int line, __VA_ARGS__)
调用
LOG_I("check_send_cmd ok\\r\\n");
LOG_I("%s",tmp_str);
LOG_I("check_send_cmd: %s is error,result: %d !",send_cmd, result);
以上是关于宏定义中的###操作符和... _ _VA_ARGS_ _解析的主要内容,如果未能解决你的问题,请参考以下文章
内核中的宏定义__init__initdata和__exit__exitdata
宏定义中的#,##,...,do{}while,__VA_ARGS__