I have this code:
class Test
{
public static void main(String args[])
{
System.out.println((-9 >>> 1)); //O/P 2147483643
System.out.println((-9 >> 1)); //O/P -5
}
}
Correct me if I am wrong in understanding the following:
The bit pattern for -9 is
10000000 00000000 00000000 00001001
If shifted to >> right with 1 position then
1100000 00000000 00000000 00000100
This above bit pattern is not equal to -5. How do these 2 operators work on negative numbers? I do understand that if they are used on positive numbers, then the behavior is same.
The bit pattern for -9 is not what you think it is.
It's
11111111 11111111 11111111 11110111
Therefore, shifting it by one (not keeping or keeping the sign bit) :
01111111 11111111 11111111 11111011 // 2147483643
11111111 11111111 11111111 11111011 // -5