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!

link|improve this question

62% accept rate
5  
Try this: 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:46
89  
Thank-goodness this question was tagged Java and not C... – pst Oct 27 '11 at 5:37
5  
This is a really bad practice, don't increment variable in the same line you use it. – Yousf Oct 27 '11 at 9:32
40  
it's funnier if you write x += ++x – fortran Oct 27 '11 at 9:41
55  
What happens? Team leader will slap you. – alxx Oct 27 '11 at 11:09
show 11 more comments
feedback

closed as exact duplicate by Neal, NickC, Ben Voigt, BЈовић, LarsTech Oct 27 '11 at 22:04

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

13 Answers

up vote 224 down vote accepted
x = x++;

is equivalent to

int tmp = x;
x++;
x = tmp;
link|improve this answer
17  
+1 this is the best, clearest answer – Erick Robertson Oct 27 '11 at 11:24
10  
Lol, yay for recursive definitions. you probably should've done x=x+1 instead of x++ – user606723 Oct 27 '11 at 13:12
3  
@user606723: No. i meant the whole statement x = x++ , not just the post increment x++. – Prince John Wesley Oct 27 '11 at 13:56
4  
I don't think this is all that useful without further explanation. For instance, it's not true that x = ++x; is also equivalent to int tmp = x; ++x; x = tmp;, so by what logic can we deduce that your answer is correct (which it is)? – kvb Oct 27 '11 at 17:53
2  
@forker: I think it would be clearer if you used assembly instructions that apply to the processor Michael is using ;) – carleeto Oct 27 '11 at 20:30
show 4 more comments
feedback

x does get incremented. But you are assigning the old value of x back into itself.

x = x++;

x++ increments x and returns its old value. x = assigns the old value back to itself.

So in the end, x gets assigned back to its initial value.

link|improve this answer
2  
+1 this is also a great explanation – Erick Robertson Oct 27 '11 at 11:25
3  
This one I understood. :-) – Andrew J. Brehm Oct 27 '11 at 11:36
1  
This answer says why, Prince John Wesley's just states. – Jonathan. Oct 27 '11 at 21:49
feedback
int x = 7;
x = x++;

It has undefined behaviour in C and for Java see this answer. It depends on compiler what happens.

link|improve this answer
feedback

It's incremented after "x = x++;". It would be 8 if you did "x = ++x;".

link|improve this answer
If it is incremented after x = x++, then it should be 8. – R. Martinho Fernandes Dec 1 '11 at 0:21
feedback

When you re-assign the value for x it is still 7. Try x = ++x and you will get 8 else do

x++; // don't re-assign, just increment
System.out.println(x); // prints 8
link|improve this answer
feedback

The incrementing occurs after x is called, so x still equals 7. ++x would equal 8 when x is called

link|improve this answer
feedback

because x++ increments the value AFTER assigning it to the variable. so on and during the execution of this line:

x++;

the varialbe x will still have the original value (7), but using x again on another line, such as

System.out.println(x + "");

will give you 8.

if you want to use an incremented value of x on your assignment statement, use

++x;

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.

link|improve this answer
This is just plain wrong. Have you even tried running it? – R. Martinho Fernandes Dec 1 '11 at 0:17
what part is just plain wrong? – Josephus Villarey Dec 1 '11 at 2:42
The one that says it increments after assigning, and the one that says it will print 8. It increments before assigning, and it prints 7. – R. Martinho Fernandes Dec 1 '11 at 2:43
if x is originally 7, System.out.println(String.valueOf(x++)); prints 7. you sure we're talking about the same programming language? – Josephus Villarey Dec 1 '11 at 2:47
Yes, I am. This ideone.com/kj2UU doesn't print 8, like this answer claims. – R. Martinho Fernandes Dec 1 '11 at 2:50
show 2 more comments
feedback

So this means: x++ is not equal to x = x+1

because:

int x = 7; x = x++;
x is 7

int x = 7; x = x = x+1;
x is 8

and now it seems a bit strange:

int x = 7; x = x+=1;
x is 8

very compiler dependent!

link|improve this answer
1  
who said it was equal in first place? – fortran Oct 27 '11 at 13:23
@fortran Well at several places we have read it, and even in starter books, the meaning is explained this way that: x++ means x=x+1. You can consider the following link for the same as one of the many answers explanation_link – linuxeasy Oct 27 '11 at 13:44
If I were you I'd trash these books immediately xD In any case, it would be like (x = x + 1, x-1) in C, where comma separated expressions are allowed. – fortran Oct 27 '11 at 15:52
3  
@fortran: Well, in my decade-old copy of "The Java Programming Language, Third Edition" on page 159 it says ""The expression i++ is equivalent to i=i+1 except that i is evaluated only once". Who said it in the first place? James Gosling, it would appear. This portion of this edition of the Java spec is extraordinarily vague and poorly specified; I presume that later editions cleaned up the language to express the actual operator semantics more clearly. – Eric Lippert Oct 27 '11 at 17:05
1  
@fortran: by "except i is evaluated only once" the standard is attempting to convey that an expression like "M().x++" only calls M() once. A less vague and more accurate wording would emphasize that there is a difference between evaluating i as a variable to determine its storage location -- which is what is meant by "evaluated only once" here -- and reading or writing to that storage location -- either of which could be a reasonable but incorrect interpretation of 'evaluated'. Clearly the storage location has to be both read and written! – Eric Lippert Oct 27 '11 at 18:02
show 3 more comments
feedback

What happens when int x = 7; x = x++;?

ans -> x++ means first use value of x for expression and then increase it by 1.
This is what happens in your case. The value of x on RHS is copied to variable x on LHS and then value of x is increased by 1.

Similarly ++x means -> increase the value of x first by one and then use in expression .
So in your case if you do x = ++x ; // where x = 7
you will get value of 8.

For more clarity try to find out how many printf statement will execute the following code

while(i++ <5)   
  printf("%d" , ++i);   // This might clear your concept upto  great extend
link|improve this answer
feedback

++x is pre-increment -> x is incremented before being used
x++ is post-increment -> x is incremented after being used

int x = 7; -> x get 7 value <br>
x = x++; -> x get x value AND only then x is incremented
link|improve this answer
feedback

it must remain the same because x++ will effect the variable after the execution of this line. on the other hand ++x will have reverse effect.

link|improve this answer
feedback

It really does not make sense to do 'x = x++;'. In other languages it may well be invalid. 'y = x++' would assign the value of x to y and then increment x. If you did '++x' the increment would happen before the assignment.

link|improve this answer
1  
This doesn't answer the question. – BoltClock Oct 27 '11 at 20:11
feedback

int x=7;

println(x++); // x= still 7
println(x) ; // x = 8

x++ means 1 is added to X after the current statement is executed

++x means 1 is added to X before the current statement is executed

Improvement (Edit)

int x=7;
x=x++;
printf("%d",x); // prints 8 in C 
println(x); // prints 7 in Java (not tested)

So it depends on language!

link|improve this answer
If it is added after the current statement is executed x = x++ should leave x as 8. – R. Martinho Fernandes Dec 1 '11 at 0:21
println() is part of the statement. x++ alone is not a statement. It is like print x and now increment x. Println(++x) would be increment x and now print it – The crocodile hunter Dec 1 '11 at 0:51
The question is about the statement x = x++;. Your claim that 1 is added after the current statement does not explain why x is still 7. It doesn't explain that because 1 is added immediately when the increment expression is evaluated, not later. – R. Martinho Fernandes Dec 1 '11 at 0:53
You are right, I did not explain what was asked. Now fixed the answer. – The crocodile hunter Dec 1 '11 at 1:26
This doesn't really fix it. x = x++; is undefined behaviour in C, so it could legally print "42", or even "blah". And you kept the parts that read "after the current statement" and "before the current statement", which are what is wrong. – R. Martinho Fernandes Dec 1 '11 at 2:55
show 2 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.