1.Int数据中取byte(右移同时&0xFF)
2.byte合成int(高位左移同时 | 低位)
byte high = 0xBB; byte low = 0x40; int aa = high<<8|low;
3.byte取bit
京公网安备 11010502049817号