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);
|
This was probably asked somewhere but I couldn't find it. Could someone clarify why this code compiles and prints out
| |||||||||||||||
feedback
|
|
It's being parsed as this:
where all the In which case, the | |||
|
feedback
|
|
Because both '+' and '-' are unary operators, and the casts are working on the operands of those unaries. The rest is math. | |||
|
feedback
|
|
Unary operators and casting :) +1 is legal (byte) + 1 is casting +1 to a byte. Sneaky! Made me think. | |||
|
feedback
|