java中byte、 int、char、long、float、double各占多少字节数?

字节:byte:用来计量存储容量的一种计量单位;位:bit

类型 字符数
byte 1字节
char 2字节
short 2字节
int 4字节
float 4字节
long 8字节
double 8字节
boolean 至少1字节

你可能感兴趣的:(Java基础)