三目运算符的语法格式

(expression) ? if-true-statement : if-false-statement;

三目运算符类似if else的精简写法
三目运算符编写练习 三目写法以及if else等价写法

public class Test {
public static void main(String[] args)
{
    String sentence = 999 > 99 ? "Right" : "Error";
    System.out.println(sentence);
    System.out.println("Iso");
    String sentence2 = null;
    if (999>99)
    {
        sentence2 = "Yes";
    }
    else
    {
        sentence2= "No";
    }
    System.out.println(sentence2);
}

}

最后修改:2022 年 09 月 17 日
如果觉得我的文章对你有用,只需评论或转发支持,谢绝投喂!