Possible Duplicate:
Weird java behavior with casts to primitive types
Why does this code in Java,
int i = (byte) + (char) - (int) + (long) - 1;
System.out.println(i);
prints 1? Why does it even compile?
Source: Java Code Geeks
Why does this code in Java,
prints 1? Why does it even compile? Source: Java Code Geeks |
|||
|
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.
|
What you are doing is combining type casts with unary operators. So let's see: First, you have the value Then, you perform the unary operation Then, you cast it to int, so we now have Then you cast it to char, so we have Finally, the value is cast to |
||||
|
|
|
The various |
|||
|
|
|
This goes right to left. -1 gets cast to long. Then the + prefix is applied (which has no effect), and it's cast to int. Then the - gets applied (changing it to 1) and it gets cast to char. Lastly, the + prefix is applied (which still has no effect) and it's cast to byte. |
|||
|
|
|
lets add parenthesis:
basically this is just a series of casts and unary operators ( the full program flow is in luiscubal's answer |
|||
|
|