三元运算符
-
代码示例
public class operator{ public static void main(String[] args){ // x ? y : z // 如果 x = true,则结果为 y,否则结果为 z int score = 80; String type = score < 60 ? "不及格":"及格"; System.out.println(type); } }
-
运行结果示例
及格
代码示例
public class operator{
public static void main(String[] args){
// x ? y : z
// 如果 x = true,则结果为 y,否则结果为 z
int score = 80;
String type = score < 60 ? "不及格":"及格";
System.out.println(type);
}
}
运行结果示例
及格