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

11、自动拆箱和装箱

时间:2018-12-15 14:55:01      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:对象   class   color   拆箱   span   支持   new   常量   数据   

什么是自动拆箱和自动装箱?

        //自动装箱:把基本类型转换为包装类类型
        Integer s1 = 123;
        
        //自动拆箱:把包装类类型转换为基本类型
        Integer s2 = new Integer(10);
        int i2 = s2;

以上特性是jdk5中加入的,也就是说在jdk5版本之前是不支持自动装箱和自动拆箱的。

注意:在判断两个Integer类型是否相等时,要使用equals方法,不能使用"==",Integer已经重写了Object中的equals方法。

     Integer s2 = 888;
        Integer s3 = 888;
        System.out.println(s2 == s3); //false Integer s2 = 888; 相当于 Integer s2 = new Ingeter(888);s2和s3地址不一样
        System.out.println(s2.equals(s3)); //true 。equals比较的是值, == 比较的是地址 
        

整型常量池

如果数据是在(-128~127)之间,java中在方法区中引入了一个“整型常量池”。
下面程序打印的结果

        Integer s4 = 127;
        Integer s5 = 127;
        System.out.println(s4 == s5); //true
        System.out.println(s4.equals(s5)); //true

上面程序不会在堆中创建对象,会直接从整型常量池中拿。
比较Integer的值是否相等时,一定要使用equals方法

 

11、自动拆箱和装箱

标签:对象   class   color   拆箱   span   支持   new   常量   数据   

原文地址:https://www.cnblogs.com/zhuifeng-mayi/p/10123319.html

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