Why is the output in this example 1?

public static void main(String[] args){
 int[] a = { 1, 2, 3, 4 };   
 int[] b = { 2, 3, 1, 0 };   
 System.out.println( a [ (a = b)[3] ] );   
}

I thought it would be 2. i.e., the expression is evaluated as:

a[(a=b)[3]]
a[b[3]]    //because a is now pointing to b
a[0]   

Shouldn't a[0] be 2 because a is pointing to b?

Thanks in advance.

link|improve this question

3  
Man, C has this so much simpler with that "undefined behaviour" thing! – Kos Dec 4 '11 at 21:53
2  
+1 for weird learnings! – dann.dev Dec 4 '11 at 23:21
These are the kind of questions some Java tests or interviewers would love to ask, even though no one who is sane would ever write code like that. – GreenieMeanie Dec 8 '11 at 18:13
Yes i am studying for the SCJP certification and the question came up in one of the examples. – ziggy Dec 8 '11 at 19:21
Personally i dont think it is fair to ask this kind of question in an interview. – ziggy Dec 8 '11 at 19:21
feedback

3 Answers

up vote 12 down vote accepted

That weirded me out as well... however, check section 15.7.1 over here

Essentially, operands are evaluated from left to right. But also note this:

It is recommended that code not rely crucially on this specification. Code is usually clearer when each expression contains at most one side effect, as its outermost operation, and when code does not depend on exactly which exception arises as a consequence of the left-to-right evaluation of expressions.

link|improve this answer
I always thought that brackets are evaluated first - BODMAS – ziggy Dec 9 '11 at 12:49
feedback

The arguments to each operator are evaluated left-to-right. I.e., the a in front of the [...] is evaluated before its contents, at which point it still refers to the first array.

link|improve this answer
feedback
a [ (a = b)[3] ] )

is interpreted as follows:

a = b => a = {2, 3, 1, 0};
( a = b )[3] => 0;

Here is the trick here: a is evaluated as the value before b is assigned to it.

a[(a = b)[3]) => a[0] = 1;

Think about the operator precedence in Java. It should be a bit more obvious.

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.