Why don't Java's +=, -=, *=, /= compound assignment operators require casting?

后端 未结 11 1311
暖寄归人
暖寄归人 2020-11-21 05:06

Until today, I thought that for example:

i += j;

Was just a shortcut for:

i = i + j;

But if we try this:<

11条回答
  •  情深已故
    2020-11-21 05:30

    As always with these questions, the JLS holds the answer. In this case §15.26.2 Compound Assignment Operators. An extract:

    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.

    An example cited from §15.26.2

    [...] the following code is correct:

    short x = 3;
    x += 4.6;
    

    and results in x having the value 7 because it is equivalent to:

    short x = 3;
    x = (short)(x + 4.6);
    

    In other words, your assumption is correct.

提交回复
热议问题