C语言条件编译详解

预处理程序提供了条件编译的功能。可以按不同的条件去编译不同的程序部分,因而产生不同的目标代码文件。这对于程序的移植和调试是很有用的。条件编译有三种形式,下面分别介绍。

第一种形式

第一种形式的格式为:
    #ifdef  标识符
        程序段1
    #else
        程序段2
    #endif

它的功能是,如果标识符已被 #define命令定义过则对程序段1进行编译;否则对程序段2进行编译。如果没有程序段2(它为空),本格式中的#else可以没有,即可以写为:
    #ifdef  标识符
        程序段
    #endif

【例9-12】

  1. #include <stdio.h>
  2. #define NUM ok
  3. int main(void){
  4. struct stu{
  5. int num;
  6. char *name;
  7. char sex;
  8. float score;
  9. } *ps;
  10. ps=(struct stu*)malloc(sizeof(struct stu));
  11. ps->num=102;
  12. ps->name="Zhang ping";
  13. ps->sex=‘M‘;
  14. ps->score=62.5;
  15. #ifdef NUM
  16. printf("Number=%d\nScore=%f\n",ps->num,ps->score);
  17. #else
  18. printf("Name=%s\nSex=%c\n",ps->name,ps->sex);
  19. #endif
  20. free(ps);
  21. return 0;
  22. }

由于在程序的第14行插入了条件编译预处理命令,因此要根据NUM是否被定义过来决定编译那一个printf语句。而在程序的第一行已对NUM作过宏定义,因此应对第一个printf语句作编译故运行结果是输出了学号和成绩。

在程序的第1行宏定义中,定义NUM表示字符串OK,其实也可以为任何字符串,甚至不给出任何字符串,写为:

  1. #define NUM

也具有同样的意义。只有取消程序的第1行才会去编译第二个printf语句。读者可上机试作。

第二种形式

第二种形式的格式为:
    #ifndef 标识符
        程序段1 
    #else 
        程序段2 
    #endif
与第一种形式的区别是将“ifdef”改为“ifndef”。它的功能是,如果标识符未被#define命令定义过则对程序段1进行编译,否则对程序段2进行编译。这与第一种形式的功能正相反。

http://www.zbnews.net/jiankang/list1/234895.html
http://www.zbnews.net/jiankang/list1/234894.html
http://www.zbnews.net/jiankang/list1/234891.html
http://www.51etong.com/jkzt/list1/234889.html
http://www.zbnews.net/jiankang/list1/234887.html
http://www.51etong.com/jkzt/list1/234886.html
http://www.zbnews.net/jiankang/list1/234885.html
http://www.zbnews.net/jiankang/list1/234884.html
http://www.zbnews.net/jiankang/list1/234882.html
http://www.51etong.com/jkzt/list1/234880.html
http://www.lznews.gov.cn/uzt/list1/234879.html
http://www.lznews.gov.cn/uzt/list1/234878.html
http://www.51etong.com/jkzt/list1/234876.html
http://www.lznews.gov.cn/uzt/list1/234875.html
http://www.lznews.gov.cn/uzt/list1/234874.html
http://www.lznews.gov.cn/uzt/list1/234873.html
http://www.zbnews.net/jiankang/list1/234872.html
http://www.51etong.com/jkzt/list1/234871.html
http://www.51etong.com/jkzt/list1/234870.html
http://www.51etong.com/jkzt/list1/234867.html
http://user.qzone.qq.com/2633883405
http://t.qq.com/changchuny8250
http://health.people.com.cn/xywy/wfyxb/tp/8634716732.html
http://health.people.com.cn/xywy/wfyxb/tp/8634711498.html
http://health.people.com.cn/xywy/wfyxb/tp/8634708130.html
http://health.people.com.cn/xywy/wfyxb/tp/8634705327.html
http://health.people.com.cn/xywy/wfyxb/tp/8634702557.html
http://health.people.com.cn/xywy/wfyxb/tp/8634699443.html
http://health.people.com.cn/xywy/wfyxb/tp/8634695041.html
http://health.people.com.cn/xywy/wfyxb/tp/8634692366.html
http://health.people.com.cn/xywy/wfyxb/tp/8634689457.html
http://health.people.com.cn/xywy/wfyxb/tp/8634686655.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8634680004.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8634675843.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8634671613.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8634668953.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8634665768.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634662151.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634659390.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634655387.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634652223.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634648791.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634645687.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8634642791.html
http://health.people.com.cn/xywy/wfyxb/zl/8634639673.html
http://health.people.com.cn/xywy/wfyxb/zl/8634636341.html
http://health.people.com.cn/xywy/wfyxb/zl/8634633176.html
http://health.people.com.cn/xywy/wfyxb/zl/8634629876.html
http://health.people.com.cn/xywy/wfyxb/zl/8634626116.html
http://health.people.com.cn/xywy/wfyxb/zl/8634621396.html
http://health.people.com.cn/xywy/wfyxb/zl/8634618202.html
http://health.people.com.cn/xywy/wfyxb/zl/8634615071.html
http://health.people.com.cn/xywy/wfyxb/zl/8634612138.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634608141.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634601130.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634598198.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634595171.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634591848.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634587855.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634584673.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634580296.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634576927.html
http://health.people.com.cn/xywy/wfyxb/kfal/8634572513.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634568629.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634565548.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634561012.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634558160.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634555287.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634551027.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634546991.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634543966.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8634540202.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665825627.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665803242.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665760857.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665738541.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665725796.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665705278.html
http://health.people.com.cn/xywy/wfyxb/npxpf/8665676307.html
http://health.people.com.cn/xywy/wfyxb/tp/8665652613.html
http://health.people.com.cn/xywy/wfyxb/tp/8665634968.html
http://health.people.com.cn/xywy/wfyxb/tp/8665618204.html
http://health.people.com.cn/xywy/wfyxb/tp/8665599559.html
http://health.people.com.cn/xywy/wfyxb/tp/8665570637.html
http://health.people.com.cn/xywy/wfyxb/tp/8665546616.html
http://health.people.com.cn/xywy/wfyxb/tp/8665516148.html
http://health.people.com.cn/xywy/wfyxb/tp/8665494052.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665348011.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665332141.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665304778.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665279337.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665245471.html
http://health.people.com.cn/xywy/wfyxb/wfyxb/8665217641.html
http://health.people.com.cn/xywy/wfyxb/zl/8665183707.html
http://health.people.com.cn/xywy/wfyxb/zl/8665151882.html
http://health.people.com.cn/xywy/wfyxb/zl/8665126913.html
http://health.people.com.cn/xywy/wfyxb/zl/8665095276.html
http://health.people.com.cn/xywy/wfyxb/zl/8665065223.html
http://health.people.com.cn/xywy/wfyxb/zl/8665044459.html
http://health.people.com.cn/xywy/wfyxb/zl/8665016966.html
http://health.people.com.cn/xywy/wfyxb/zl/8664994329.html
http://health.people.com.cn/xywy/wfyxb/zl/8664964107.html
http://health.people.com.cn/xywy/wfyxb/zl/8664946776.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664904496.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664875723.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664841175.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664820153.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664800127.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664786867.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664757276.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664738646.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664718323.html
http://health.people.com.cn/xywy/wfyxb/kfal/8664688557.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664668308.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664646362.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664631785.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664603483.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664580771.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664560208.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664545675.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664532567.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664505390.html
http://health.people.com.cn/xywy/wfyxb/yyxw/8664484808.html

第三种形式

第三种形式的格式为:
    #if 常量表达式
        程序段1
    #else 
        程序段2
    #endif
它的功能是,如常量表达式的值为真(非0),则对程序段1 进行编译,否则对程序段2进行编译。因此可以使程序在不同条件下,完成不同的功能。

【例9-13】

  1. #include <stdio.h>
  2. #define R 1
  3. int main(void){
  4. float c,r,s;
  5. printf ("input a number: ");
  6. scanf("%f",&c);
  7. #if R
  8. r=3.14159*c*c;
  9. printf("area of round is: %f\n",r);
  10. #else
  11. s=c*c;
  12. printf("area of square is: %f\n",s);
  13. #endif
  14. return 0;
  15. }

本例中采用了第三种形式的条件编译。在程序第1行宏定义中,定义R为1,因此在条件编译时,常量表达式的值为真,故计算并输出圆面积。

时间: 2024-11-09 01:03:15

C语言条件编译详解的相关文章

彻底搞定C语言指针详解

1.语言中变量的实质 要理解C指针,我认为一定要理解C中“变量”的存储实质, 所以我就从“变量”这个东西开始讲起吧! 先来理解理解内存空间吧!请看下图: 内存地址→ 6 7 8 9 10 11 12 13 ----------------------------------------------------------------- ... | | | | | | | |.. ------------------------------- ---------------------------

11_Shell语言———管道详解

管道的基本用法为: COMMAND1 | COMMAND2 | COMMAND3 | ... COMMAND1 的输出结果会作为输入参数传递给COMMAND2, COMMAND2加以处理后会传递给COMMAND3, 依此类推.管道的使用便是Linux哲学思想中"组合小程序完成复杂任务"的体现方式. 如果管道的最后一个命令是在当前shell的子shell中执行,那么该执行结果不能保存为一个变量,这样会导致当前shell无法获取执行结果,这是由shell中"本地变量只对当前she

小程序脚本语言WXS详解

WXS脚本语言是 Weixin Script脚本的简称,是JS.JSON.WXML.WXSS之后又一大小程序内部文件类型.截至到目前小程序已经提供了5种文件类型. 解构小程序的几种方式,其中一种方式就是通过文件类型:JS.JSON.WXML.WXSS.WXS.前面四种之前已经介绍过,今天主要是介绍WXS这种文件类型.如果你是PHP.JAVA.C#程序员的话写过服务端代码的话,就很好理解WXS这种脚本语言了.能够更加方便的动态实现页面上的一些基本逻辑判断,而不用全部的依赖后台实现,再通过接口返回.

c语言scanf详解

函数名: scanf 功 能: 执行格式化输入 用 法: int scanf(char *format[,argument,...]);scanf()函数是通用终端格式化输入函数,它从标准输入设备(键盘) 读取输入的信息.可以读入任何固有类型的数据并自动把数值变换成适当的机内格式.其调用格式为:      scanf("<格式化字符串>",<地址表>);scanf()函数返回成功赋值的数据项数,出错时则返回EOF.其控制串由三类字符构成:1.格式化说明符: 2.

Canny边缘检测算法原理及C语言实现详解(原创码字)

Canny算子是John Canny在1986年提出的,那年老大爷才28岁,该文章发表在PAMI顶级期刊上的(1986. A computational approach to edge detection. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 8, 1986, pp. 679-698).老大爷目前在加州伯克利做machine learning,80-90年代视觉都是图像处理,现在做视觉都是机器

C语言正则表达式详解 regcomp() regexec() regfree()详解

标准的C和C++都不支持正则表达式,但有一些函数库可以辅助C/C++程序员完成这一功能,其中最著名的当数Philip Hazel的Perl-Compatible Regular Expression库,许多Linux发行版本都带有这个函数库. C语言处理正则表达式常用的函数有regcomp().regexec().regfree()和regerror(),一般分为三个步骤,如下所示: C语言中使用正则表达式一般分为三步: 编译正则表达式 regcomp() 匹配正则表达式 regexec() 释

R语言数据结构详解

R有多种存储数据的对象类型.基本的类型可分为: 1.向量 向量中的数据必须拥有相同类型或模式(数值型.字符型.逻辑型):向量类似c语言中的数组:实例:>a<-c(1,2,3,4,5,6)>b<-c(“one”,”two”,”three”)>c<-c(TURE,FALSE,TRUE)标量是指只含一个元素的向量:实例:>e<-3 访问向量中的元素(向量中的元素从1开始,这点与数组不同):>a<-c(1,2,5,7,-5,4) >a[3][1]

C语言typedef详解

在C还是C++代码中,typedef都使用的很多.typedef与#define有些相似,其实是不同的. 基本定义:typedef为C语言的关键字,作用是为一种数据类型定义一个新名字,这里的数据类型包括基本数据类型(int,char),也包括自定义的数据类型(struct). (1)与#define的区别 typedef有点像#define宏,其实际类型替代同义字.不同点是typedef在编译时被解释,因此让编译器来应付超越预处理器能力的文本替换. (2)减少错误 定义一种类型的别名,而不只是简

C语言typeof详解

前言:     typeof关键字是C语言中的一个新扩展,这个特性在linux内核中应用非常广泛. 一,说明     typeof的参数可以是两种形式:表达式或类型. 1,表达式的的例子:         typeof(x[0](1)         这里假设x是一个函数指针数组,这样就可以得到这个函数返回值的类型了.         如果将typeof用于表达式,则该表达式不会执行.只会得到该表达式的类型.         以下示例声明了int类型的var变量,因为表达式foo()是int类型