位运算

1、带符号右移 >>

二进制数 16 8 4 2 1,每个高位是低位的二倍

System.out.println(20 >> 1);  // 结果是20的二分之一,10

原文地址:https://www.cnblogs.com/Mike_Chang/p/10412727.html