Java的数据类型
-
强类型语言
要求变量的使用要严格符合规定,所有变量都必须先定义后使用
-
Java的数据类型分为基本类型和引用类型
基本数据类型(primitive type)
-
数值类型
1.整数类型
byte 1字节 范围:-128~127
short 2字节 范围:-3_2768~3_2767
int 4字节 范围:-21_4748_3648~21_4748_3647
long 8字节 范围:-922_3372_0368_5477_5808~922_3372_0368_5477_5807
2.浮点数类型
float 4字节
double 8字节
3.字符类型
char 4字节
-
boolean类型 占1位, 值为true或false(布尔值)
引用数据类型(reference type)
-
类
-
接口
-
数组