| 运算符
| 运算符计算其操作数的逻辑或。如果 x 或 y 之一评估为 true,则 x | y 的结果为 true。否则,结果为 false。
即使左操作数评估为 true,| 运算符也会评估两个操作数,以便操作结果为 true,而不管右操作数的值如何。
|| 运算符
条件逻辑或运算符 ||,也称为“短路”逻辑或运算符,计算其操作数的逻辑或。
如果 x 或 y 之一评估为 true,则 x || y 的结果为 true。否则,结果为 false。如果 x 评估为 true,则不会评估 y。
class Program { static void Main(string[] args){ int a = 4; int b = 3; int c = 0; c = a | b; Console.WriteLine("Line 1 - Value of c is {0}", c); Console.ReadLine(); } }
Value of c is 7 Here the values are converted to binary 4−−100 3−−011 Output 7 −−111
static void Main(string[] args){ int a = 4; int b = 3; int c = 7; if (a > b || b > c){ System.Console.WriteLine("a is largest"); } else { System.Console.WriteLine("a is not largest"); } Console.ReadLine(); }
a is largest
在上面的示例中,其中一个条件返回 true,因此它永远不会检查下一个条件。
以上是| 之间有什么区别?和||或者 C# 中的运算符?的详细内容。更多信息请关注PHP中文网其他相关文章!