一:常用转化
1.基本数据类型转至包装类
Integer a = new Integer(2);
Integer b = Integer.valueOf(2);
2.包装类转换至基本数据类型
int c = a.intValue();
double d = a.doubleValue();
3.字符串转换至包装类
Integer e = new Integer("2");
Integer f = Integer.valueOf("2");
String str1 = Integer.parseInt("2");
4.包装类转换至字符串
String str2 = a.toString();
二:自动装箱和自动拆箱
1.自动装箱:基本数据类型自动转换为包装类
Integer a = 1; //等价于 Integer a = Integer.valueOf(2);
2.自动拆箱:包装类自动转换为基本数据类型
Integer inte = new Integer(2);
int aa = inte; //等价于int aa = inte.intValue();
三.常见异常
Integer a = null;
int b = a; //会报错,自动调用a.intValue(); 空指针异常
处理办法
integer a = null;
if(a != null){
int b = a;
};