什么是C#中的三元运算符?
三元运算符是C#中的条件运算符。它接受三个参数并计算一个布尔表达式。
例如-
y = (z == 1) ? 100 : 180;
上面,如果第一个操作数的值为true(1),则第二个操作数的值为。如果第一个操作数的计算结果为false,则将计算第三个操作数。
以下是一个例子-
示例
using System;namespace Demo {
class Program {
static void Main(string[] args) {
int x, y;
x = 25;
y = (x == 25) ? 20 : 30;
Console.WriteLine("Value of x = {0}", y);
y = (x == 1) ? 50 : 90;
Console.WriteLine("Value of y = {0}", y);
Console.ReadLine();
}
}
}
上面我们有两个条件使用三元运算符-
y = (x == 25) ? 20 : 30;y = (x == 1) ? 50 : 90;
以上是 什么是C#中的三元运算符? 的全部内容, 来源链接: utcz.com/z/326802.html