所以我明白了:
adress | a | a+1 | a+2 | a+3
bytes | 0x80 | 0x00 | 0x00 | 0x01
我需要知道在哪个数字中表示:
Big endian,int(-2147483647因为Two的补码,即!number + 1)
-Big endian,short( - (2 ** 15 +1)to me)
-Little endian,short(128 to me)
-Big endian,unsigned short(32768 to me)
-Little endian,unsigned short(128 to me)
我犯了什么错吗?