Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

i have small doubt.why the below code is printing value i=2.

int i=2;
i=i++;
System.out.println(i);

can someone please explain me what is happening in line no 2.

so there is no meaning here of doing ++ here?

Thanks

share|improve this question
No need to assign the i++ value back to i. int i = 2; i++; System.out.println(i); – Roddy of the Frozen Peas Aug 27 '12 at 18:42
...or int i = 2; System.out.println(++i); – Marko Topolnik Aug 27 '12 at 18:43
Same question posted recently.. stackoverflow.com/questions/12033676/… – Miljen Mikic Aug 27 '12 at 18:44
@MiljenMikic Incredible... 37 upvotes that one. – Marko Topolnik Aug 27 '12 at 18:45
@MarkoTopolnik: On top of, it was posted few days ago (I wouldn't surprise if it was in 2009/2010). – Nambari Aug 27 '12 at 18:46
show 3 more comments

marked as duplicate by Mysticial, Arne Burmeister, rgettman, Jaguar, Ansgar Wiechers May 1 at 19:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 5 down vote accepted
i=i++;

Because first the assignment happens, then the increment applies.

Something like:

first i gets 2, then ++ operation happens, but results won't be re-assigned to i, so i value will remain as 2.

share|improve this answer
After increment is the value stored on the heap or stack? Is the incremented value lost unless stored in some variable again?? – Raghunandan Dec 22 '12 at 4:08
@Raghunandan: Assuming it is local variable, it will be stored on stack. It will stay in memory, but there is no way to refer/access it. – Nambari Dec 22 '12 at 4:11
Thanks that cleared my doubt. +1 for the explanation. – Raghunandan Dec 22 '12 at 4:12
@Raghunandan: Don't use post increment, you could do something like i += 1; (or) i= i+1 etc., – Nambari Dec 22 '12 at 4:18

When you are telling i=i++; you are telling the computer to assign i to i, and after that, increment i's value, but it will not affect i, because i's value is 2.

The correct way to do it should be i=++i; meaning, add 1 to i before assigning it to i, or you could simply use i++;

share|improve this answer

i = i++; first evaluates the i++ expression, which increments i and evaluates to the value of i prior to the increment. Since you immediately assign to i this value, it resets the value of i so the increment appears to never have happened. i = ++i; would cause the other behavior.

share|improve this answer

Thanks to all for helping me in understanding the things which was of great value.

I found somewhere nice post on this.

I got the answer from the suggestion given by stackoverflow forum only but there was some clear explanation missing what I feel.

Miljen Mikic suggested link is not working and saying page not found.

Some Clear explanation given for problem below is

int a=2, b=2;
int c = a++/b++;
System.out.println(c);

disassembles to the following.

   0:iconst_2      ; [I]Push the constant 2 on the stack[/I]  
   1:istore_1      ; [I]Pop the stack into local variable 1 (a)[/I]  
   2:iconst_2      ; [I]Push the constant 2 on the stack, again[/I]  
   3:istore_2      ; [I]Pop the stack into local variable 2 (b)[/I]  
   4:iload_1       ; [I]Push the value of a on the stack[/I]  
   5:iinc1, 1  ; [I]Add 1 to local variable 1 (a)[/I]  
   8:iload_2       ; [I]Push the value of b on the stack[/I]  
   9:iinc2, 1  ; [I]Add 1 to local variable 2 (b)[/I]  
   12:idiv          ; [I]Pop two ints off the stack, divide, push result[/I]  
   13:istore_3      ; [I]Pop the stack into local variable 3 (c)[/I]  
   14:return  

which help me understand much better.

Please add to this If I am wrong in my point.

Thanks for all your answers.

share|improve this answer

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