As a standalone statement, x++; is both an increment and assignment. It seems that there is some confusions as to what happens when. If we have
int x = 10;
int y = (x++) + 2;
We will get x = 11 and y = 12. The current value of x is assigned, and then the increment and reassignment of x takes place. So, when using the same variable,
int x = 10; // Create a variable x, and assign an initial value of 10.
x = x++; // First, assign the current value of x to x. (x = x)
// Second, increment x by one. (x++ - first part)
// Third, assign the new value of x to x. (x++ - second part)
Any way you look at it, the new value of x is 11.
I was completely wrong on that one.