/*
**test26.cpp : Defines the entry point for the console application.
**系统winXP SP3 32位.
**编译预处理之条件编译、#运算符
*/
#include "stdafx.h"
#include "iostream.h"
#define TEST 0
#define TEST1(x) #x #x #x #x
#define TEST2(x) "hello," #x " end."
//#的功能是将其后面的宏参数进行字符串化操作。
#ifndef TEST
#error ERROR: TEST is not define
#endif
#pragma comment(lib, "user32.lib")
int main(int argc, char* argv[])
{
int iNum = 123;
cout<<TEST1(iNum)<<endl; //iNumiNumiNumiNum,转换的不是实际参数的值,不会进行数值的转换
cout<<TEST2(123)<<endl; //hello, 123 end,成功
return 0;
}
Tips1:条件编译可以控制预处理器选择不同的代码段作为编译器的输入,使得源程序在不同编译条件下产生不同的代码。与程序条件语句(ifelse)类似。主要有#if、#ifdef、#ifndef、#elif、#else、#endif、define(define不能单独使用,需要与#if、#elif结合使用)
如:#if 0
/***
不想编译的代码段,要想编译此处,需要将#if后面改成非0值
***/
#endif
Tips2:#error指令用于输出平台、环境等先关信息。
如:#ifndef TEST
#error ERROR:TEST is not define编译时,如没有定义TEST,则会报错。