short a = 2;
a = a + 2;
--- 出错:a+2的结果为int型,不能从int转为short

short a = 2;
a += 2;
--- 不出错:+=是java中的一个运算符,在运算时会自动进行向左的类型转换

对于精度小于int的数值运算,会被转换为int再进行运算