Possible Duplicate:
Is there a difference between x++ and ++x in java?
Why does this go into an infinite loop?
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!
int x = 7; x = ++x;, of course is still horrible code, you don't need to reassign.int x = 7; x++;is enough. – stivlo Oct 27 '11 at 4:46x += ++x– fortran Oct 27 '11 at 9:41