What does “>>>” in java mean?

前端 未结 3 458
情话喂你
情话喂你 2021-01-21 19:48

im trying to translate this code to python, but im having a hard time doing so, don\'t worry about the index values and variable names, I just want to know what the \">>>\" part

3条回答
  •  情话喂你
    2021-01-21 20:30

    Thats the unsigned right shift operator. It's a bitwise operator that shifts a zero into the leftmost bit of your operand. Here - http://docs.oracle.com/javase/tutorial/java/nutsandbolts/op3.html.

提交回复
热议问题