C99引入了一个_Bool
类型来存储一个布尔值,该值只能是1
(真)或0
(假)。
#include <stdio.h>
int main() {
_Bool b = 0; /* false value */
}
_Bool
通常通过标准头文件stdbool.h
定义的别名 – bool
来访问。
此标头还将宏true
和false
定义为1
和0
的别名。
#include <stdbool.h>
#include <stdio.h>
int main() {
bool b = true; /* true value */
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266423.html