Java 八大基本类型

数据类型 内存空间(8位1字节) 取值范围 默认值
byte 8位 -2^7 - 2^7-1 0
short 16位 -2^15 - 2^15-1 0
int 32位 -2^31 - 2^31-1 0
long 64位 -2^63 - 2^63-1 0
float 32位 -2^31 - 2^31-1 0.0
double 64位 -2^63 - 2^63-1 0.0
char 16位 0 - 2^16-1
boolean 8位 true、false false

猜你喜欢

转载自www.cnblogs.com/gcvition/p/12105426.html