Java中的自动包装

自动拆装箱(AutoBoxing) 是JDK1.5中新增加的内容 ,它可以将基本数据类型自动转换为它的包装类,或者相反。

装箱应该理解为封装对象,即把基础数据类型(如 int)转换成基础类型封装类的对象(如 new Integer());拆箱就是装箱的反过程,即把基础类型封装类的对象(如 new Integer())转换为基础数据类型(如 int)。
装箱:
Integer a = new Integer() ;
        a = 100 ; //1.5以前不支持为对象如此赋值
拆箱:
int b = new Integer(100) ;

基本数据类型与包装类对应关系如下:
short Short
int Integer
long Long
char Char
float Float
double Double
boolean Boolean

source:http://zhidao.baidu.com/question/285340136.html
posted @ 2012-04-25 21:09  cradle  阅读(1407)  评论(0编辑  收藏  举报