首页 > 编程语言 > 详细

Java的自动装箱和拆箱

时间:2014-08-21 11:08:43      阅读:334      评论:0      收藏:0      [点我收藏+]
 1 public class BoxingDemo {
 2 
 3     public static void main(String[] args) {
 4         
 5          /**
 6           * 自动装箱示例:
 7           * 基本类型int是不能直接赋值给其包装类对象Integer的,但是这里这条语句可以编译通过
 8           * 因为自动装箱原理隐式包含了下面2条语句:
 9           * Integer temp = new Integer(1);
10           * int1 = temp;
11           * */
12         Integer int1 = 1;
13         
14         /**
15           * 自动拆箱示例:
16           * Integer对象复制给基本类型
17           * 自动拆箱原理隐式包含了下面2条语句:
18           * int temp = int1.intValue();
19           * int2 = temp;
20           * */
21         int int2 = int1;
22         
23         System.out.println(int2);
24         
25         //输出结果为1,Java5以前的版本,需要手动完成装箱和拆箱工作
26 
27     }
28 
29 }

 

Java的自动装箱和拆箱,布布扣,bubuko.com

Java的自动装箱和拆箱

原文:http://www.cnblogs.com/hewenwu/p/3926522.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!