package cn.it;
/*
* 自动装箱:把基本类型转换为包装类类型
* 自动拆箱:把包装类类型转换为基本类型
*
*/
public class IntegerDemo3 {
public static void main(String[] args) {
// 定义了一个int类型的包装类类型变量i
Integer i = new Integer(100);
Integer ii = 100;
if(ii!=null){//判断是否为null
ii+=200;
System.out.println("ii:"+ii);
}
/*
反编译
Integer i = new Integer(100);
Integer ii = Integer.valueOf(100);
if (ii != null)
{
ii = Integer.valueOf(ii.intValue() + 200);
System.out.println((new StringBuilder("ii:")).append(ii).toString());
}
*/
}
}
* 自动装箱:把基本类型转换为包装类类型
* 自动拆箱:把包装类类型转换为基本类型
*
*/
public class IntegerDemo3 {
public static void main(String[] args) {
// 定义了一个int类型的包装类类型变量i
Integer i = new Integer(100);
Integer ii = 100;
if(ii!=null){//判断是否为null
ii+=200;
System.out.println("ii:"+ii);
}
/*
反编译
Integer i = new Integer(100);
Integer ii = Integer.valueOf(100);
if (ii != null)
{
ii = Integer.valueOf(ii.intValue() + 200);
System.out.println((new StringBuilder("ii:")).append(ii).toString());
}
*/
}
}