基本类型(primitive type)
数值类型:byte占1个字节;short占2个字节;int占4个字节;long占8个字节;float占4个字节;double占8个字节。char占2个字节。
定义long类型的时候,要在数字后面加个大写L。eg:long num = 30L;
定义float类型的时候,要在小数后面加个大写F。eg:float num = 3.14F;
定义char类型的时候,只能有一个字符,中文或者英文都可以。eg:char chr = \'a\'; 或者 char chr = \'中\';
boolean类型:只占1个位
引用数据类型(reference type)
类(String),接口,数组