c语言自定义BOOL函数
Posted 章无忌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言自定义BOOL函数相关的知识,希望对你有一定的参考价值。
C语言中没有BOOL类型变量,它是C++独有的,由于使用BOOL类型可以使代码更具有可读性,很多编程者都在C中自己定义了类似的应用,一般方法有两种:
第一种:采用宏定义方式
typedef int BOOL;
#define true 1
#define false 0
或写为:
#ifndef bool
#define bool int
#endif
#ifndef true
#define true 1
#endif
#ifndef false
#define false 0
#endif
第二种:采用枚举型变量方式
typedef enum{false=0,true}BOOL;
以上是关于c语言自定义BOOL函数的主要内容,如果未能解决你的问题,请参考以下文章