* byte char short 三者之间运算会导致的在运算前就会自动转换成int类型,就算是同类型之间也会转换成int*/
byte ab =1; byte cd = 2; /* * byte ad = ab + cd 是错的*/ int ad = ab +cd ; System.out.println(ad);
* byte char short 三者之间运算会导致的在运算前就会自动转换成int类型,就算是同类型之间也会转换成int*/
byte ab =1; byte cd = 2; /* * byte ad = ab + cd 是错的*/ int ad = ab +cd ; System.out.println(ad);