c语言中有bool型变量吗?
生活随笔
收集整理的這篇文章主要介紹了
c语言中有bool型变量吗?
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
? C語言里面是沒有bool(布爾)類型的,C++里面才有,這就是說,在C++里面使用bool類型是沒有問題的。
bool類型有只有兩個值:true =1 、false=0。
????? 但是,C99標準里面,又定義了bool類型變量。這時,只要引入頭文件 <stdbool.h>,就能在C語言里面正常使用bool類型。
或者自己定義:
typedef enum {FALSE = 0, TRUE = !FALSE} bool;#include <stdbool.h>里面有這個的定義,也可以直接包含這個頭文件。
1 /* stdbool.h: ISO/IEC 9899:1999 (C99), section 7.16 */ 2 3 /* Copyright (C) ARM Ltd., 2002 4 * All rights reserved 5 * RCS $Revision: 177844 $ 6 * Checkin $Date: 2012-11-21 11:51:12 +0000 (Wed, 21 Nov 2012) $ 7 * Revising $Author: drodgman $ 8 */ 9 10 #ifndef __bool_true_false_are_defined 11 #define __bool_true_false_are_defined 1 12 #define __ARMCLIB_VERSION 5060002 13 14 #ifndef __cplusplus /* In C++, 'bool', 'true' and 'false' and keywords */ 15 #define bool _Bool 16 #define true 1 17 #define false 0 18 #else 19 #ifdef __GNUC__ 20 /* GNU C++ supports direct inclusion of stdbool.h to provide C99 21 compatibility by defining _Bool */ 22 #define _Bool bool 23 #endif 24 #endif 25 26 #endif /* __bool_true_false_are_defined */?
轉載于:https://www.cnblogs.com/prayer521/p/6016307.html
總結
以上是生活随笔為你收集整理的c语言中有bool型变量吗?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 算法笔记_001:斐波那契数的多种解法(
- 下一篇: CentOS常用指令