第17节 条件编译使用分析

-------------------------------------资源来源于网络,仅供自学使用,如有侵权,联系我必删.

第一:

?  条件编译的行为类似于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;
}

 

小结
?  通过编译器命令行能够定义预处理器使用的宏
?  条件编译可以避免重复包含头同一个头文件
?  条件编译是在工程开发中可以区别不同产品线的代码
? 条件编译可以定义产品的发布版和调试版

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值