基本数据类型对象包装类
byte Byte char Character(方法已经很全了,可以单独拿出来记)
short short
int Integer
long Long
boolean Boolean
double Double
float Float
特点(比如.Integer):
1.最值变成常量 Integer.MAX_VALUE
2.最常见的操作:基本数据类型转换成字符串
1>基本数据类型+""
2>基本数据类型.toString(基本数据类型值)
3.基本数据类型对象转换成基本数据类型
intValue() 比如:Integer i = new Integer("123");int num = i.intValue();
|