Short hand assignment operator, +=, True Meaning?

眉间皱痕 提交于 2019-12-10 14:04:24

问题


I learnt that i+=2 is the short-hand of i=i+2. But now am doubting it. For the following code, the above knowledge holds no good:

byte b=0; b=b+2; //Error:Required byte, Found int

The above code is justifiable, as 2 is int type and the expression returns int value.

But, the following code runs fine:

byte b=0; b+=2; //b stores 2 after += operation

This is forcing me to doubt that the += short-hand operator is somewhat more than I know. Please enlighten me.


回答1:


When in doubt, you can always check the Java Language Specification. In this case, the relevant section is 15.26.2, Compound Assignment Operators.

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.

So you were almost correct, except that a cast is added as well. In your case: b+=2; qualifies to b=(byte)(b+2);




回答2:


Coming from a C++ background, I can attempt to claim that the concept is similar. The operator += is defined as a method of the object to its left, passing in the object to its right as an argument. This makes it trivial for the writer of the language to throw in things like typecasting and compatibility fixes. The only thing is, as far as I know, Java doesn't allow the user to overload the operator functions



来源:https://stackoverflow.com/questions/16362017/short-hand-assignment-operator-true-meaning

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!