1)#define 的符号用法
##连接
#define con(x,y) x##y
n=con(123,456) -> n=123456 字符串也是类似
#@转字符
#define tochar(x) #@x x不超过3位
char a=tochar(1) -> a='1'
#转字符串
#define tostring(x) #x
char *str =tostring(12345) ->str="12345"
\行继续
代表不换行
__VA_ARGS__
接受不定数量的参数
#define longargv(...) fprintf(stderr,__VA_ARGS__)
longargv("%s:%d:","hello",10) ->fprintf(stderr,"%s:%d:","hello",10)
3)预编译条件分析
#if 0
code
#endif
类似于 /* code */
实例:
int a=0;
#if 0 //为0就不编译里面的code
a=10;
#endif
printf("%d\n",a);
实例2:
#define BULL 0
int main()
{
char ch='a';
#if BULL //非0为真
ch='c';
#else
ch='b';
#endif
printf("%c\n",ch);
return 1;
}
实例3:
#define BULL 0
int main()
{
char ch='a';
#if _BULL //如果BULL被#define定义过就为真
ch='c';
#else
ch='b';
#endif
printf("%c\n",ch);
return 1;
}
常用的预定义和预编译
最新推荐文章于 2023-06-27 05:07:19 发布