用赋值表达式作为bool值
Posted xiaoxiaoshuai-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用赋值表达式作为bool值相关的知识,希望对你有一定的参考价值。
1 enum Status 2 { 3 stOk, 4 stQuit, 5 stError 6 }; 7 8 9 int main() 10 { 11 Status status; 12 int n; 13 bool b1 = (status = stOk); //false 14 bool b2 = (n = 0); //false 15 bool b3 = (n = 1); //true 16 }
总结:结果并非一直为true,得看后面赋的值是否为0
以上是关于用赋值表达式作为bool值的主要内容,如果未能解决你的问题,请参考以下文章