#define Conn(x,y) x##y
#define ToChar(x) #@x
#define ToString(x) #x
#define CONS(a,b) int(a##e##b)
x##y表示x连接y,举例说:
int n = Conn(12,34); //n=1234;
char* string= Conn(“abc”, “def”)//string= “abcdef”;
#@x,加上单引号,结果返回是一个const char。
char a = ToChar(1);//a=‘1’;
char a = ToChar(123);//a=‘3’;
参数超过四个字符,编译器报错
#x给x加双引号
char* string= ToString(123132);//string=“123132”;
#define CONS(a,b) int(a##e##b) 它表示a乘10的b次方,CONS(2,3)=2e3=1000.
#define、#undef、#ifdef、#ifndef、#if、#elif、#else、#endif、defined。
#define 定义一个预处理宏
#undef 取消宏的定义
#if 编译预处理中的条件命令,相当于C语法中的if语句
#ifdef 判断某个宏是否被定义,若已定义,执行随后的语句
#ifndef 与#ifdef相反,判断某个宏是否未被定义
#elif 若#if, #ifdef, #ifndef或前面的#elif条件不满足,则执行#elif之后的语句,相当于C语法中的else-if
#else 与#if, #ifdef, #ifndef对应, 若这些条件不满足,则执行#else之后的语句,相当于C语法中的else
#endif #if, #ifdef, #ifndef这些条件命令的结束标志.
defined 与#if, #elif配合使用,判断某个宏是否被定义
标签:elif,##,用法,char,预定,ifdef,ifndef,C语言,define
来源: https://www.cnblogs.com/PangSpe/p/13899518.html