三目运算符: condition ? expr1 : expr2 ??运算符:expr1 ?? expr2 //(如何expr1有值,则使用第一个表达式的值,否则就是用后面的) 例子:String a;String b = “JS”;String c = a ?? bprint (c) // JS