布尔表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了布尔表达式相关的知识,希望对你有一定的参考价值。
条件语句和循环语句都以布尔表达式为条件
布尔值仅有两种取值True or False
布尔表达式
布尔操作符:and,or,not
布尔代数
and false == *0
or false == +0
and true == *1
德摩根定律,not放入表达式中之后
not (a and b) == (not a) or (not b)
not (a or b) == (not a) and (not b)
一个值不为0都视为真
以上是关于布尔表达式的主要内容,如果未能解决你的问题,请参考以下文章
2021-06-03:布尔运算。给定一个布尔表达式和一个期望的布尔结果 result,布尔表达式由 0 (false)1 (true)& (AND) | (OR) 和 ^ (XOR) 符(代码