C++ 逻辑运算符


逻辑运算符

比较运算符,您还可以测试真的1) 或者错误的0)值与逻辑运算符

逻辑运算符用于确定变量或值之间的逻辑:

Operator Name Description Example 尝试一下
&&  Logical and Returns true if both statements are true x < 5 &&  x < 10 尝试一下 »
||  Logical or Returns true if one of the statements is true x < 5 || x < 4 尝试一下 »
! Logical not Reverse the result, returns false if the result is true !(x < 5 && x < 10) 尝试一下 »

您将了解更多有关真的错误的值将在后面的章节中介绍。