首页 > 其他 > 详细

自动装箱拆箱

时间:2019-05-27 12:55:57      阅读:91      评论:0      收藏:0      [点我收藏+]

基本类型可以使用运算符直接进行计算,但是引用类型不可以。

 

自动拆箱:对象自动直接转成基本数值

 

自动装箱:基本数值自动直接转成对象

 

自动装箱(byte常量池)细节的演示

 

当数值在byte范围之内时,进行自动装箱,不会新创建对象空间而是使用已有的空间。

public class Demo04 {
    public static void main(String[] args) {
        /*Integer in1=500;
        Integer in2=500;
        System.out.println(in1==in2);//false
        System.out.println(in1.equals(in2));//true
*/        
        //byte常量池    -128   -     127
        Integer in1=50;//Integer in1=new Integer(50);
        Integer in2=50;//Integein2=in1;
        System.out.println(in1==in2);//false
        System.out.println(in1.equals(in2));//true
    }
}

 

自动装箱拆箱

原文:https://www.cnblogs.com/G-qz/p/10929929.html

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