例如运算中 int three=one;
赋值直接是 three+=one;
java中变量需要先定义后赋值。因为你事先已经定义int three,所以不用加int了。
相反,three += one的意思是three = three + one,如果three没有事先定义和赋值, three += one就不能参与运算,会产生错误。