码迷,mamicode.com
首页 > 其他好文 > 详细

自动装箱和拆箱

时间:2019-04-21 10:16:57      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:new   基本   class   jdk   div   col   nbsp   对象   装箱   

JDK1.5特性

自动装箱:基本类型转换为包装类对象的过程,通过构造,创建对象就可以了

拆箱:包装类对象转换为基本类的过程,

  Integer i = new Integer(10);

可以写成

  Integer i = 10;  //自动装箱 相当于:Integer i = new Integer(10);

 

  int a = i;  //自动拆箱 相当于 int a = i.intValue();

 

1 Integer i = 10;
2 Integer i2 = 20;
3 Integer i3 = i + i2;
4 /* Integer id = new Integer(i.intValue() + i2.intValue()); //括号里面先拆箱,完成运算后装箱
5 *
6 */

 

自动装箱和拆箱

标签:new   基本   class   jdk   div   col   nbsp   对象   装箱   

原文地址:https://www.cnblogs.com/yifengs/p/10743575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!