hanxia 2020-05-09
短路原则
对于and 如果条件1为假,and后面的条件短路,不用判断一定为假
对于or,如果条件1为真,or 后面的条件短路,不用判断一定为真
not not true or false and not true
true
not not true为真,or的短路原则(false and not true)被短路
true or true and false
true
解析:true 为ture,根据or 短路原则,true and false被短路不计算就是true
运算符用于执行程序代码运算,会针对一个以上操作数项目来进行运算。以上实例中 7、5 和 12 是操作数。关系运算符用于计算结果是否为 true 或者 false。逻辑运算符用于测定变量或值之间的逻辑。