强健香菇

文章
5
资源
1
加入时间
2年10月17天

Java中a=a+3与a+=3的区别

(1)byte a=2; a=a+3; 这样写是错误的,因为3是int类型,a+3也是int类型 int类型赋值给byte是不正确的。 (2)byte a=2; a+=3; 这个是正确的。