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

自动装箱拆箱(Autoboxing,Unboxing)

时间:2018-02-13 16:48:05      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:https   class   ocs   http   pos   iter   integer   img   tutorial   

自动装箱和拆箱

https://docs.oracle.com/javase/tutorial/java/data/autoboxing.html

1.5才有(Autoboxing,Unboxing)

自动装箱(Autoboxing)是java编译器在java基本类型和对应的对象包装类型上做的自动转换

自动装箱如int转成Integer,double转成Double

拆箱(Unboxing)Double转double


技术分享图片


例子:

`

    List list=new ArrayList();
    list.add(1);//装箱
    list.add(2);
    list.add(3);
    Iterator iterator=list.iterator();
    while(iterator.hasNext()){
        int i =(Integer) iterator.next();//拆箱
        System.out.println(i);
    }

`

自动装箱拆箱(Autoboxing,Unboxing)

标签:https   class   ocs   http   pos   iter   integer   img   tutorial   

原文地址:https://www.cnblogs.com/rookieJW/p/8446778.html

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