VC 中没有stdbool.h 这个文件 该怎么定义stdbool 我是初学者 请写明白点 谢谢
2个回答
展开全部
stdbool.h 是标准c语言的库文件. c99标准中引入,在VC中没有,并且是不需要的。
这个文件其实就是定义了布尔类型罢了,程序中的所有定义可以写成C++支持的标准true false,就不需要这个文件。
如果一定需要,那么自己新建一个.h文件并加入工程,文件代码如下:
/*
stdbool.h
-- Boolean type and values
(substitute for missing C99 standard header)
public-domain implementation from [EMAIL PROTECTED]
implements subclause 7.16 of ISO/IEC 9899:1999 (E)
*/
#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
/* program is allowed to contain its own definitions, so ... */
#undef bool
#undef true
#undef false
#if __STDC_VERSION__ < 199901
typedef int _Bool
#endif
#define bool _Bool
#define true 1
#define false 0
#endif /* !defined(__bool_true_false_are_defined) */
这个文件其实就是定义了布尔类型罢了,程序中的所有定义可以写成C++支持的标准true false,就不需要这个文件。
如果一定需要,那么自己新建一个.h文件并加入工程,文件代码如下:
/*
stdbool.h
-- Boolean type and values
(substitute for missing C99 standard header)
public-domain implementation from [EMAIL PROTECTED]
implements subclause 7.16 of ISO/IEC 9899:1999 (E)
*/
#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
/* program is allowed to contain its own definitions, so ... */
#undef bool
#undef true
#undef false
#if __STDC_VERSION__ < 199901
typedef int _Bool
#endif
#define bool _Bool
#define true 1
#define false 0
#endif /* !defined(__bool_true_false_are_defined) */
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询