Why doesn\'t Java support the <<< (unsigned left shift) operator, but does support the >>> (unsigned right shift) operator?
Why doesn't Java support the <<< (unsigned left shift) operator, but does support the >>> (unsigned right shift) operator?
That is because when you left shift the bits , the leftmost bit (AKA SIGNED Bit) is lost anyways.
Since unsigned left shift operator would do exactly the same thing as the existing left shift operator, we don't have it.