JAVA中八中基本数据类型

1.所占空间

boolean byte char short float int long double
1byte 1byte 2byte 2byte 4byte 4byte 8byte 8byte

2.取值范围

int:-2147483648———2147483647
float:1.4E-45———3.4028235E38
long:-9223372036854775808———9223372036854775807
double:-4.9E——1.797693E308

3.自动转换

byte->short->int->long->float->double

你可能感兴趣的:(JAVA中八中基本数据类型)