2018-01-07 创建人:Ruo_Xiao
一、#ifdef、#else和#endif
1、 实例:
#include "stdafx.h"
#include <stdio.h>
#define HHH
#define Print_X(x,...) printf("x = "#x","__VA_ARGS__)
int _tmain(int argc, _TCHAR* argv[])
{
int x = 11;
int y = x*x;
#ifdef HHH
Print_X(x,"y = %d\n",y);
#else
Print_X(x);
#endif
getchar();
return 0;
}
2、 作用,若定义了HHH,则执行#ifdef下面的代码,否则执行#else下面的代码。效果与 if else 类似,但是前者不能识别“{}”,故#else和#endif不可缺少。
所以上面的代码的执行结果为:
若将“#define HHH”注释掉,则结果变为:
二、#ifndef
与ifdef用法一样,唯一的差别是其意义相反。若定义了"HHH",则执行“#else”下面的代码,否则执行“#ifndef”下面的代码。
三、#if、#elif
1、与 if else 类似,判断#if后面跟的整形常量表达式,若为真,则执行#if下面的代码,若为假,则执行#elif后面的代码。
2、例如:
#include "stdafx.h"
#include <stdio.h>
#define HHH 2
#define Print_X(x,...) printf("x = "#x","__VA_ARGS__)
int _tmain(int argc, _TCHAR* argv[])
{
int x = 11;
int y = x*x;
#if HHH == 1
Print_X(x,"y = %d\n",y);
#elif HHH==2
Print_X(x);
#endif
getchar();
return 0;
}
执行结果为:
若改为“#define HHH 2”,则执行结果为: