8个基本类型:int,short,long,byte,char,double,float,boolean
对应的封装类:Integer,Short,Long,Byte,Charactor,Double,Float,Boolean
数据类型 默认值 封装类(都在java.lang包下)
byte (byte)0 Byte
short (short)0 Short
int 0 Integer
long 0L Long
float 0.0f Float
double 0.0d Double
char \u0000 Character
boolean false Boolean