I was wondering, what can the >>>=
operator be applied to?
It works for the following:
int >>>= int
long >>>= long
long >>>= int
long >>>= short
short >>>= long
short >>>= short
int >>>= byte
But not for anything including float
or double
.
Why is that, and how can I make it work for float
and double
?
Thank you!
It doesn't make much sense to shift bits around in a float or double considering what the bits represent.
Should you do an shift right on a double, the signbit would be interpreted as exponent, and part of the exponent would spill over to the significand. The semantics of the shift operation would be meaningless.
If you really want to shift the bits around, you can however go via
Double.doubleToLongBits
andDouble.longBitsToDouble
as follows: