x ? y : z

package com.liu.operator;

public class Demo5 {
public static void main(String[] args) {
//x ? y : z;
//如果x的结果为ture,结果为y,否则结果为z
int score = 60;
String type = score<60?"不及格":"及格";
System.out.println(type);
}
}

x ? y : z

上一篇:Docker基础


下一篇:Odoo14 需要哪些技术