c bool 类型 是宏定义
#define false 0
#define true 1
#define bool int
这种定义是狭义的
c++ 的bool定义是
false 0 于上面没区别
ture 为非0值
这种定义是广益的
后来 c89 增加一个 _Bool 需要包含头文件 stdbool.h
false 为 0;
true 为非零
c bool 类型 是宏定义
#define false 0
#define true 1
#define bool int
这种定义是狭义的
c++ 的bool定义是
false 0 于上面没区别
ture 为非0值
这种定义是广益的
后来 c89 增加一个 _Bool 需要包含头文件 stdbool.h
false 为 0;
true 为非零