can you explain me the output of this in case of Java

int a=5,i;

i=++a + ++a + a++;
i=a++ + ++a + ++a;

a=++a + ++a + a++;

System.out.println(a);

System.out.println(i);

The output is 20 in both cases

link|improve this question

7+7+6=20. _____ – KennyTM Mar 3 '10 at 12:24
Always avoid ambiguous statements :) – Prasoon Saurav Mar 3 '10 at 12:25
3  
@Prasoon Saurav Unlike C and C++, Java and C# have strictly defined order of evaluation, so these statements are not ambiguous. – Pete Kirkham Mar 3 '10 at 13:12
I know that but still those statements are not(can not be) used for practical purpose so one must avoid it. – Prasoon Saurav Mar 3 '10 at 13:21
feedback

5 Answers

up vote 5 down vote accepted

Does this help?

i=++a + ++a + a++; =>
i=6 + 7 + 7; (a=8)

i=a++ + ++a + ++a; =>
i=5 + 7 + 8; (a=8)
link|improve this answer
Are you sure a == 9 in the second one? – Pete Kirkham Mar 3 '10 at 13:10
You are right, it isn't 9. It is 8. – kgiannakakis Mar 3 '10 at 13:14
feedback
i=++a + ++a + a++;

is

i = 6 + 7 + 7

Working: increment a to 6 (current value 6) + increment a to 7 (current value 7). Sum is 13 now add it to current value of a (=7) and then increment a to 8. Sum is 20 and value of a after the assignment completes is 8.

i=a++ + ++a + ++a;

is

i=5 + 7 + 8

Working: At the start value of a is 5. Use it in the addition and then increment it to 6 (current value 6). Increment a from current value 6 to 7 to get other operand of +. Sum is 12 and current value of a is 7. Next increment a from 7 to 8 (current value = 8) and add it to previous sum 12 to get 20.

link|improve this answer
feedback

++a increments a before it is evaluated. a++ evaluates a and then increments it.

link|improve this answer
1  
so his code says: i = 6 + 7 + 7; i = 5 + 7 + 8 – user181750 Mar 3 '10 at 12:26
feedback

when a is 5, then a++ gives a 5 to the expression, and ++a gives a 6 to the expression.

So you calculate

i = 6 + 7 + 7
i = 5 + 7 + 8
link|improve this answer
feedback

++a increments and then uses the variable a++ uses and then increments the variable

if you have

a = 1

and you do

System.out.println(a++) //you will see 1

//Now a is 2

System.out.println(++a) //you will see 3

codaddict explains your particular snippet

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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