operator >>> 抽象方法
- int shiftAmount
按 shiftAmount
位无符号右移。
丢弃最低的 shiftAmount
位,剩余位(如果有)向下移动,最高位用零填充。
shiftAmount
必须是非负数。
示例
print((3 >>> 1).toRadixString(2)); // 0011 -> 0001
print((9 >>> 2).toRadixString(2)); // 1001 -> 0010
print(((-9) >>> 2).toRadixString(2)); // 111...1011 -> 001...1110 (> 0)
实现
int operator >>>(int shiftAmount);