首页 > 代码库 > 1.数据类型

1.数据类型

  • 基本数据类型

  1.整数

byte      1字节   

short     2字节

int       4字节

long      8字节

  2.浮点数

float          4字节

double       8字节

  3.字符

           char           1字节   

  4.布尔

    boolean       1字节   

  • 引用数据类型

 1.class

 2.interface

 3.数组

 

1.数据类型