JAVA byte 按位倒序方法
作者:互联网
public static byte reverseByte(byte i) { // HD, Figure 7-1 i = (byte) ((i & 0x55) << 1 | (i >>> 1) & 0x55); i = (byte) ((i & 0x33) << 2 | (i >>> 2) & 0x33); i = (byte) ((i & 0x0f) << 4 | (i >>> 4) & 0x0f); return i; }
输入值 byte = 1 0000 0001
输出值 byte= -127 1000 0000
标签:0000,0x55,按位,0x33,byte,倒序,0x0f 来源: https://www.cnblogs.com/seal-log/p/15155814.html