<<左移,>>右移 &&有个短路运算,即&&前如果为false,那&&后面的式子就不进行运算
字符串连接符 +
int a=10,b=20; System.out.println(a+b+"")//string 30 System.out.println(""+a+b)//string 1020