Why does the following code
int i = 1;
System.out.print(i += i++);
System.out.print(i);
output 2 two times instead of 3 for the 2nd print?
Could somebody please shed some light on it?
Thanks.
|
Why does the following code
output 2 two times instead of 3 for the 2nd print? Could somebody please shed some light on it? Thanks.
| |||||||
feedback
|
|
If you realise that a++ works as follows (pseudocode):
then it all makes sense. | |||||||
feedback
|
|
It may seems like i should be 3 in the end. However, if you look into the statement more closely
is equal to
which is, in this case, 1+1. The side effect of i++ is i=i+1=1+1=2 as you may have expected, however, the value of i is override after the assignment. | ||||
|
feedback
|
|
I don't know the Java bytecode syntax very well yet but according to me at bytecode level your code would look something like this :
I think this explains the output you are getting pretty well. :-) Experts, please correct me if I am wrong... | ||||
|
feedback
|
|
I don't think this is an issue with not knowing how the postfix unary operator (expr++) works. It is the order in which the statements are evaluated that is creating the confusion.
So the last statement is the same as the following two statements in this order:
So the postfix operator is evaluated first but then the whole line is evaluated but using the previous value of i. So, to use another example that would make this more clear:
And another example:
The second line is assigning i. The first i is 2, the next i is also 2, but now the third i is 3 because i++ has changed the value of i. As the case from before, i-- will not have any affect on i because it will get rewritten with i = 2 + 2 + 3.
| |||
|
feedback
|
Therefore:
and
and then
Pretty straight forward. | |||||
feedback
|