与比较运算符,您还可以测试真的(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) | 尝试一下 » |
您将了解更多有关真的和错误的值将在后面的章节中介绍。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!