数据类型 字节数 byte 有效范围(bits 位) 表示数范围
boolean 1
byte 1字节 8 -127~128
short 2字节 16 -32768·~32767(-2的15次幂~2的31次幂减1)
int 4字节 32 -2147483648 ~2147483647(-2的31次幂~2的31次幂减1)
float 4字节 32 (-2的63次幂~2的63次幂减1)
char 2字节 16
long 8字节 64
double 8字节 64
1byte=8bit
|