Java >>> vs >>
>> is arithmetic shift right or Signed right shift
For example: -2 represented in 8 bits would be 11111110 (because the most significant bit has negative weight). Shifting it right one bit using arithmetic shift would give you 11111111, or -1.
>>> i...
til.hashnode.dev1 min read