Tagged Questions
6
votes
6answers
6k views
Why byte b = (byte) 0xFF is equals to integer -1?
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?
1
vote
0answers
86 views
why is it called two's complement? [closed]
Possible Duplicate:
two's complement, why the name “two”
why is using a sign bit so to represent negative numbers is call "2's complement"? How did such name come about, can ...