What happens (behind the curtains) when this is executed?
int x = 7;
x = x++;
I compiled and executed this. x is still 7 even after the entire statement. In my book, it says that x is incremented!
|
What happens (behind the curtains) when this is executed?
I compiled and executed this. |
||||
| show 27 more comments |
is equivalent to
|
|||||||||||||||||||||
|
|
The statement:
is equivalent to:
In short, the statement has no effect. The key points:
Note that unlike C and C++, the order of evaluation of an expression in Java is totally specified and there is no room for platform-specific variation. Compilers are only allowed to reorder the operations if this does not change the result of executing the code from the perspective of the current thread. In this case, a compiler would be permitted to optimize away the entire statement because it can be proved that it is a no-op. In case it is not already obvious:
Hopefully, code checkers like FindBugs and PMD will flag code like this as suspicious. |
|||||||||||||||||||||
|
|
So in the end, |
|||||||||||||
|
It has undefined behaviour in C and for Java see this answer. It depends on compiler what happens. |
|||
|
|
|
A construct like
Let's rewrite this to do the same thing, based on removing the
Now, let's rewrite it to do (what I think) you wanted:
The subtlety here is that the
Notice the
I also recommend against using the |
||||
|
|
|
It's incremented after " |
|||||
|
|
When you re-assign the value for
|
||||
|
|
|
The incrementing occurs after x is called, so x still equals 7. ++x would equal 8 when x is called |
|||
|
|
|
because x++ increments the value AFTER assigning it to the variable. so on and during the execution of this line:
the varialbe x will still have the original value (7), but using x again on another line, such as
will give you 8. if you want to use an incremented value of x on your assignment statement, use
This will increment x by 1, THEN assign that value to the variable x. [Edit] instead of x = x++, it's just x++; the former assigns the original value of x to itself, so it actually does nothing on that line. |
|||||||||||
|
|
What happens when ans -> Similarly For more clarity try to find out how many printf statement will execute the following code
|
||||
|
|
|
So this means:
because:
and now it seems a bit strange:
very compiler dependent! |
|||||||||||||||||
|
|
|
||||
|
|
|
X++ and ++X are different in your question
The reason is the in the first case it prints then executes but in the later case it executes then prints.Hence your answer |
|||
|
|
x += ++x– fortran Oct 27 '11 at 9:41