C# 逻辑运算符


逻辑运算符

比较运算符,您还可以测试True或者False值与逻辑运算符

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

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) 尝试一下 »

您将在中了解有关比较和逻辑运算符的更多信息布尔值If...Else章节。