short a = -1 ; System.out.println(Integer.toBinaryString(a)) ; a >>>= -1 ; System.out.println(Integer.toBinaryString(a)) ;//输出a为1.无符号右移-1位是怎么移动的呢? 该怎么思考这个问题?
添加回答
举报
0/150
提交
取消