Skip to content

Commit

Permalink
Update Java 基础.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 authored Mar 26, 2019
1 parent 5943865 commit 8c556c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notes/Java 基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
- double/64
- boolean/\~

boolean 只有两个值:true、false,可以使用 1 bit 来存储,但是具体大小没有明确规定。JVM 会在编译时期将 boolean 类型的数据转换为 int,使用 1 来表示 true,0 表示 false。JVM 支持 boolean 数组,但是是通过读写 byte 数组来实现的
boolean 只有两个值:true、false,可以使用 1 bit 来存储,但是具体大小没有明确规定。JVM 会在编译时期将 boolean 类型的数据转换为 int,使用 1 来表示 true,0 表示 false。JVM 支持 boolean 数组,但是是通过读写 byte 数组来实现的

- [Primitive Data Types](https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html)
- [The Java® Virtual Machine Specification](https://docs.oracle.com/javase/specs/jvms/se8/jvms8.pdf)
Expand Down

0 comments on commit 8c556c0

Please sign in to comment.