我做了一个小小的测试来操纵一个短片,我遇到了一个编译问题.
以下代码编译:
以下代码编译:
short s = 1; s += s;
而这个没有:
short s = 1; s = s + s; //Cannot convert from int to short
解决方法
你是对的,短小提升到ints.这在二进制运算符的评估期间发生,它被称为二进制数字升级.
但是,复合赋值运算符(如=)可以有效地清除这一点. Section
15.26.2 of the JLS状态:
A compound assignment expression of the form E1 op= E2 is equivalent to E1 = (T) ((E1) op (E2)),where T is the type of E1,except that E1 is evaluated only once.
也就是说,这相当于缩减.