首页 > 代码库 > 三元运算

三元运算

三元运算
如:
int a = 1;
int b = 2;
int c = a > b? a : b;
写成if语句就是
if(a > b)
{
c = a;
} else {
c = b;
}

三元运算