Double Greater Than Sign (>>) in Java?

后端 未结 7 1103
南旧
南旧 2020-12-04 13:07

What does the >> sign mean in Java? I had never seen it used before but came across it today. I tried searching for it on Google, but didn\'t find anythin

相关标签:
7条回答
  • 2020-12-04 14:08

    I believe it's the bit shifting operator. As in moves all 1s and 0s one position right. (I think you can imagine what << does... :) )

    0 讨论(0)
提交回复
热议问题