Why does Java return -2147483648 when I bit shift 1 << 63 ?
The expected result is 9 223 372 036 854 775 808, tested with Wolfram Alpha and my calculator..
I tested:
System.out.print((long)(1 << (63)));
|
Why does Java return -2147483648 when I bit shift 1 << 63 ? The expected result is 9 223 372 036 854 775 808, tested with Wolfram Alpha and my calculator.. I tested:
|
|||
|
|
|
There's an important thing to note about the line
You first take But there's another, more important point. Java longs are always signed, so even the line
would give a negative number. Under two's complement, whenever the leftmost bit is a 1 the number is negative. You actually cannot represent the number 263 = 9223372036854775808 in a Java primitive type, because that number is bigger than the maximum long, and
|
|||||||||
|
|
You are having an integer overflow [twice].
When you do |
||||
|
|