Java中boolean到底佔幾位元組?

山有木xi發表於2020-02-24

Java中boolean到底佔幾位元組?

這是一個看似簡單,實則深究能發現其中一二玄機的問題


讓我們來看一下官方文件中的說法

" boolean: The boolean data type has only two possible values: true and false. Use this data type for simple flags that track true/false conditions. This data type represents one bit of information, but its "size" isn't something that's precisely defined."

上面說的很清楚,boolean值只有true和false兩種,這個資料型別只代表1bit的資訊,但是它到底佔了多少空間,卻沒有嚴格的說法,也就是說,不論它的所佔空間是多少,只有1bit的資訊是有意義的


"In Oracle’s Java Virtual Machine implementation, boolean arrays in the Java programming language are encoded as Java Virtual Machine byte arrays, using 8 bits per boolean element."

在 Oracle 的 Java 虛擬機器實現中,Java 語言中的 boolean 陣列被編碼成 Java 虛擬機器的 byte 陣列,每個元素佔 8 位元。


"The Java Virtual Machine does directly support boolean arrays. Its newarray instruction (§newarray) enables creation of boolean arrays. Arrays of type boolean are accessed and modified using the byte array instructions baload and bastore (§baload, §bastore)."

Java 虛擬機器中雖然定義了 boolean 型別,但是支援是很有限的,沒有專門的虛擬機器指令。

同時在 Java 語言中,對 boolean 值的操作被替換成 int 資料型別。


再去看看 Java 虛擬機器規範上是怎麼寫的。

" Although the Java Virtual Machine defines a boolean type, it only provides very limited support for it. There are no Java Virtual Machine instructions solely dedicated to operations on boolean values. Instead, expressions in the Java programming language that operate on boolean values are compiled to use values of the Java Virtual Machine int data type."

“The Java Virtual Machine encodes boolean array components using 1 to represent true and 0 to represent false . Where Java programming language boolean values are mapped by compilers to values of Java Virtual Machine type int , the compilers must use the same encoding.”

Java 虛擬機器使用 1 表示 true ,0 表示 false 來編碼 boolean 陣列。

Java 語言的 boolean 值被編譯器對映成 Java 虛擬機器的 int 型別的時候,也是一樣的

到這裡,得出一個結論:

boolean到底佔幾個位元組,依賴於JVM

第一,無論Boolean佔用多少位元組,只有1bit的值是有意義的

第二,boolean 型別被編譯成 int 型別來使用,佔 4 個 byte 。

第三,在 Java 虛擬機器裡,1 表示 true ,0 表示 false 。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69917874/viewspace-2677032/,如需轉載,請註明出處,否則將追究法律責任。

相關文章