Java中8大基本数据类型:
整数型:
byte --1个字节;
short--2个字节;
int--4字节;
long--8个字节;
浮点型:
float单精度--4个字节;
double双精度--8个字节;
字符型 :
char--1个字节 ;
布尔类型 :
boolean;
总而言之:
1 2 4 8
char short int long
byte float double
Java中8大基本数据类型:
整数型:
byte --1个字节;
short--2个字节;
int--4字节;
long--8个字节;
浮点型:
float单精度--4个字节;
double双精度--8个字节;
字符型 :
char--1个字节 ;
布尔类型 :
boolean;
总而言之:
1 2 4 8
char short int long
byte float double