语法格式:
x?y:z
其中x为boolean类型表达式,先计算x的值,若为true,则整个运算的结果为表达式y的值,否则整个运算结果为表达式z的值。
【示例】三目条件运算符
int score = 80;
int x = -100;
String type = score < 60 ? "不及格”:“及格”;
int flag = x > 0 ? 1: (x == 0 ? 0 : -1);
System.out.println ("type="+ type) ;//type=及格
System.out.println ("flag""+ flag) ;//flag = -1
网友评论