条件编译使用分析

1、基本概念

条件编译的行为类似于C语言中的if…else… 

条件编译是预编译指示命令,用于控制是否编译某段代码 

 

2、实例分析

条件编译初探     22-1.c

#include <stdio.h>  
  
#define C 1  
  
int main()  
{  
    const char* s;  
  
    #if( C == 1 )  
        s = "This is first printf...\n";  
    #else  
        s = "This is second printf...\n";  
    #endif  
  
    printf("%s", s);  
      
    return 0;  
}  

  

 

 

3、条件编译的本质

预编译器根据条件编译指令有选择的删除代码 

编译器不知道代码分支的存在 

if. .. else ... 语句在运行期进行分支判断 

条件编译指令在预编译期进行分支判断 

可以通过命令行定义宏 

               -  gcc -Dmacro=value file.c 或 gcc -Dmacro file.c
                    

4、编程实验

通过命令行定义宏     22-2.c 

删除22-1.c的#define C 1后:

22-2.c

#include <stdio.h>  
  
int main()  
{  
    const char* s;  
  
    #ifdef C  //判断宏C是否被定义
        s = "This is first printf...\n";  
    #else  
        s = "This is second printf...\n";  
    #endif  
  
    printf("%s", s);  
      
    return 0;  
}  

 

无宏定义C:

  

 

5、#include的本质

#include的本质是将已经存在的文件内容嵌入到当前文件中 

#include的间接包含同样会产生嵌入文件内容的操作

 

如何解决间接包含同—个头文件产生编译错误?

解决方案:

#ifndef _HEADER_FILE H   
  
#define _HEADER_FILE H   
  
  // source code   
  
#endif   

6、实例分析

条件编译的使用    

global.h

// global.h  
#ifndef _GLOBAL_H_  
#define _GLOBAL_H_  
int global = 10;  
  
#endif  

test.h

// test.h  
  
#ifndef _TEST_H_  
#define _TEST_H_  
#include "global.h"  
  
const char* NAME = "test.h";  
char* hello_world()  
{      
    return "Hello world!\n";  
}  
  
#endif  

  22-3.cpp

//#include <stdio.h>  
#include "test.h"  
#include "global.h"  
  
int main()  
{  
    const char* s = hello_world();  
    int g = global;  
      
    // printf("%s\n", NAME);  
    // printf("%d\n", g);  
      
    return 0;  
}  

条件编译可以解决头文件重复包含的编译错误 

 

7、条件编译的意义 

条件编译使得我们可以按不同的条件编译不同的代码段, 

       因而可以产生不同的目标代码 

#if…#else…#endif预编译器处理,而if…else .. 语句被

       译器处理,必然被编译进目标代码 

实际工程中条件编译主要用于以下两种情况: 

      -不同的产品线共用一份代码 

      -区分编译产品的调试版和发布版

 

8、实例分析

产品线区分及调试代码应用     product.h     22-4.c

product.h

#define DEBUG 1  //调试版
#define HIGH  1  //高端产品

22-4.c

#include <stdio.h>  
#include "product.h"  
  
#if DEBUG  
    #define LOG(s) printf("[%s:%d] %s\n", __FILE__, __LINE__, s)  
#else  
    #define LOG(s) NULL  
#endif  
  
#if 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");  
      
    #if 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;  
}  

 

 

9、小结

        通过编译器命令行能够定义预处理器使用的宏 

        条件编译可以避免围复包含头同—个头文件 

        条件编译是在工程开发中可以区别不同产品线的代码 

        条件编译可以定义产品的发布版和调试版

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值