三元运算符
// x ? y : z //如果x==true,则结果为y,否则为z; int score=80; String type=score<60 ?"不及格":"及格";//必须掌握 System.out.println(type);
扩展赋值运算符
int a=10; int b=20; a+=b;//a=a+b a-=b;//a=a-b System.out.println(a); //字符串连接 +, String System.out.println(""+a+b);//输出1020,如果字符串在前面那么它后面的会拼接 System.out.println(a+b+"");//输出30,如果字符串在后面那么它前面会依旧计算(细节问题)