作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果变量的返回值为 0
,C 编译器如何将 isOn
理解为 false?
enum bool { false, true };
typedef enum bool boolean;
int main()
{
boolean isOn = false;
printf("%d\n", isOn);
if(!isOn)
printf("IS FALSE");
return 0;
}
C 是否将 0
理解为 null,并将所有其他数字理解为非 null?
最佳答案
在 C 语言中,整数值 0 在 boolean 上下文中使用时被视为 false,而任何非零值在 boolean 上下文中都被视为 true。
enum
的值从 0 开始,如果没有专门设置,则会增加,因此对于您创建的枚举,false
的值为 0,而 >true
的值为 1。
在语句 if (!isOn)
中,!
运算符更改给定表达式的 boolean 值,!0
为 1以及给定的任何其他值为0
。由于 isOn
的值为 0,!isOn
的值为 1,因此 if
语句为 true,并且 "IS FALSE"
被打印。
关于c - 使用枚举时,C 编译器如何将 false 理解为 false,将 true 理解为 true?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52486630/
我是一名优秀的程序员,十分优秀!