byte b1=1,b2=2,b3,b6; final byte b4=4,b5=6; b6=b4+b5; b3=(b1+b2); System.out.println(b3+b6);
b3=b1+b2编译出错,这里类型转换异常,b1+b2这里自动转成int类型。