為什麼byte取值-128~127??

茅坤寶駿氹發表於2018-05-02

轉載自 為什麼byte取值-128~127??

java設計byte型別為1個位元組,1個位元組佔8位,即8bit,這是常識。


另外,計算機系統中是用補碼來儲存的,首位為0表示正數,首位為1表示負數,所以有以下結論:


最大的補碼用二進位制表示為:01111111 = 127


最小的補碼用二進位制表示為:10000000 = -128


關於補碼、原碼、反碼的計算原理可以百度。


Byte的原始碼:


/**

 * A constant holding the minimum value a {@code byte} can

 * have, -2<sup>7</sup>.

 */

public static final byte   MIN_VALUE = -128;


/**

 * A constant holding the maximum value a {@code byte} can

 * have, 2<sup>7</sup>-1.

 */

public static final byte   MAX_VALUE = 127;


7是最高位,總共8bit,可以看出byte佔1個位元組,即8/8=1。


Integer原始碼:


/**

 * A constant holding the minimum value an {@code int} can

 * have, -2<sup>31</sup>.

 */

public static final int   MIN_VALUE = 0x80000000;


/**

 * A constant holding the maximum value an {@code int} can

 * have, 2<sup>31</sup>-1.

 */

public static final int   MAX_VALUE = 0x7fffffff;


31是最高位,總共32bit,可以看出int佔4個位元組,即32/8=4。


其他Short、Long的設計原理也一樣。


相關文章