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";
相对来讲三元表达式代码量少,且可读性强。可以在简单的判断中进行具体应用。。
string result;
int i = , j = ;
if (i > j)
result = "success";
else
result = "fail";
三元表达式如下
string result;
int i = , j = ; //三元表达式
result = i > j ? "success" : "fail";
相对来讲三元表达式代码量少,且可读性强。可以在简单的判断中进行具体应用。。