Why byte b = (byte) 0xFF is equal to integer -1?
Ex:
int value = byte b = (byte) 0xFF;
System.out.println(value);
it will print -1?
|
|
Why Ex:
it will print |
|||
|
|
|
|
If you are using a signed int then 0xFF = -1 due to the 2-complement. This wiki article explains it well, see the table on the right: http://en.wikipedia.org/wiki/Two%27s_complement |
|||
|
|
|
|
Because Java (and most languages) represent negative integer values using two's-complement math. In two's-complement, 0xFF (11111111) represents (in a signed int) the value -1. |
||
|
|
|
|
Bytes are signed in Java. In binary 0x00 is 0, 0x01 is 1 and so on but all 1s (ie 0xFF) is -1, oxFE is -2 and so on. See Two's complement, which is the binary encoding mechanism used. |
||
|
|
|
|
|||
|
|
|
|
Its not just Java that does 2's complement math. That is the way every microprocessor and DSP that I can think of does math. So, its the way every programming language represents it. |
||
|
|
|
perhaps your confusion comes from why If it helps you to swallow it, think of it this way, every integer of any size also has some 'phantom' bits that are too significant to be represented. they are there, just not stored in the variable. a negative number has those bits nonzero, and positive numbers have all zeros for phantom bits when you promote a smaller value to a larger one, those phantom bits become real bits. |
||
|
|