为了方便操作基本数据类型值,将其封装成了对象,在对象中定义了属性和行为丰富了该数据的操作。 用于描述该对象的类就称为基本数据类型包装类。
byte Byte
short Short
int Integer
long Long
float Float
double Double
char Character
boolean Boolean
Integer.parseInt();
System.out.println("123"+1);//1231
System.out.println(Integer.parseInt("123"+1));//124

