-------------------------------------资源来源于网络,仅供自学使用,如有侵权,联系我必删.
第一:
? 条件编译的行为类似于C 语言中的if…else
? 条件编译是预编译指示命令 ,用于控制是否编译某段代码 ,可以 用命令行改变变量
#include <stdio.h>
//命令行 可以随意改变C的值
//gcc -DC=1 test.c
//gcc -DC=0 test.c
#define C 1
int main()
{
#if( C == 1 )
printf("This is first printf...\n");
#else
printf("This is second printf...\n");
#endif
return 0;
}
第二:
条件编译的使用
如何随心所欲的包含头文件
// test.c
#include <stdio.h>
#include "test.h"
#include "global.h"
int main()
{
f();
printf("%s\n", NAME);
return 0;
}
// test.h
#ifndef _TEST_H_
#define _TEST_H_
#include <stdio.h>
#include "global.h"
const char* NAME = "Hello world!";
void f()
{
printf("Hello world!\n");
}
#endif
// global.h
#ifndef _GLOBAL_H_
#define _GLOBAL_H_
int global = 10;
#endif
第三:
#include <stdio.h>
//在命令行 通过定义DEBUG来实现 日志打印 功能
#ifdef DEBUG
#define LOG(s) printf("[%s:%d] %s\n", __FILE__, __LINE__, s)
#else
#define LOG(s) NULL
#endif
//在命令行 通过定义HIGHG来实现 低配和高配 功能
#ifdef HIGH
void f()
{
printf("This is the high level product!\n");
}
#else
void f()
{
}
#endif
int main()
{
LOG("Enter main() ...");
f();
printf("1. Query Information.\n");
printf("2. Record Information.\n");
printf("3. Delete Information.\n");
#ifdef HIGH
printf("4. High Level Query.\n");
printf("5. Mannul Service.\n");
printf("6. Exit.\n");
#else
printf("4. Exit.\n");
#endif
LOG("Exit main() ...");
return 0;
}
小结
? 通过编译器命令行能够定义预处理器使用的宏
? 条件编译可以避免重复包含头同一个头文件
? 条件编译是在工程开发中可以区别不同产品线的代码
? 条件编译可以定义产品的发布版和调试版