三元运算符和字符串连接符三元运算符和字符串连接符字符运算+的先后顺序
三元运算符和字符串连接符x ? y : z其名为,如果x为ture 则等于y 反之则为zint score = 50; String type = score < 60 ?"不及格":"及格";//必须掌握 //if System.out.println(type);输出为 不及格,如果score换成60,则为及格。字符运算+的先后顺序public static void main(String[