基本语法:
条件表达式?表达式1:表达式2;
如果为真则执行表达式1,否则执行表达式2.
在使用三元运算符的时候,要把三元运算符当做一个整体,返回值的时候,取范围大的那个输出
例如:
public class Test {
public static void main(String[] args) {
Object object = true? new Integer(1):new Double(2.0);
System.out.println(object);
}
}
输出结果为1.0,而不是1。