May be I am too tired.
Why dont't the following display the same value?
int x = 42405;
System.out.println(x << 8);
System.out.println((x &0x00ff) << 8);
The lower bits should be clear in both cases
|
May be I am too tired.
The lower bits should be clear in both cases |
||||
| show 3 more comments |
|
EDIT: Okay, I'm leaving the bottom part for posterity... If
If there are any of the "middle" 16 bits set, then I don't understand why you'd expect them to always give the same results... I'm going to assume that the type of There's no shift operation defined for So let's take the case where
Now consider the second line of code - that's taking
|
||||
|
Below, x is > 0xff , and in one case you mask away the upper 3 bytes, meaning you
you do
And if x is a byte, it will get "promoted" to int before the shift, and if it's negative, it'll sign extend, and you get a whole lot of 1 bits set in the integer, which is masked away with &0xff in one case, and not masked away in the other i.e.
|
||||
|
|
x? – Jon Skeet Sep 22 '11 at 13:33