This was probably asked somewhere but I couldn't find it. Could someone clarify why this code compiles and prints out 1?

long i = (byte) + (char) - (int) + (long) - 1;
System.out.println(i);
link|improve this question

69% accept rate
what is weird here? – Prince John Wesley Oct 28 '11 at 3:56
@PrinceJohnWesley: well, it looks weird, isn't it? Even though the answer is simple, and we understood it right after I posted the question. – Denis Tulskiy Oct 28 '11 at 4:00
I think it looks weird; I don't have any problem believing someone would look at that and not believe it was even legal Java. – Dave Newton Oct 28 '11 at 4:02
1  
long j = +-+- - -+-+ -+- + - +1; // this is also legal. As long as ++ or -- doesn't occur. – david van brink Oct 28 '11 at 4:21
1  
This is explained in the original post vanillajava.blogspot.com/2011/10/java-plus.html ;) – Peter Lawrey Oct 28 '11 at 7:38
feedback

3 Answers

up vote 9 down vote accepted

It's being parsed as this:

long i = (byte)( +(char)( -(int)( +(long)(-1) ) ) );

where all the + and - operators are unary + or -.

In which case, the 1 gets negated twice, so it prints out as a 1.

link|improve this answer
feedback

Because both '+' and '-' are unary operators, and the casts are working on the operands of those unaries. The rest is math.

link|improve this answer
feedback

Unary operators and casting :)

+1 is legal

(byte) + 1 is casting +1 to a byte.

Sneaky! Made me think.

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.