C#基础——三元表达式

时间:2021-07-15 22:55:58
采用三元操作符对?:对表达式进行运算,这种操作符比较特别,因为它有三个操作对象,但它确实属于操作符的一种,它最终也会生成一个值。其表达式采取下述形式:
boolean-exp ? value0 : value1
原型比较大小
            string result;
int i = , j = ;
if (i > j)
result = "success";
else
result = "fail";

三元表达式如下

            string result;
int i = , j = ; //三元表达式
result = i > j ? "success" : "fail";

相对来讲三元表达式代码量少,且可读性强。可以在简单的判断中进行具体应用。。