16-04-常用对象API(基本数据类型对象包装类-JDK1.5自动装箱拆箱)

来源:互联网 发布:工具书下载网络 编辑:程序博客网 时间:2024/04/29 05:36
package cn.itcast.integer.demo;public class IntegerDemo3 {public static void main(String[] args) {Integer a = new Integer(127);Integer b = new Integer(127);System.out.println(a==b);//false,因为两个new,两个地址,堆内存中两个对象System.out.println(a.equals(b));//trueInteger x = 127;Integer y = 127;System.out.println(x==y);//true,因为jdk1.5以后,自动装箱,如果装箱的是一个字节(取值范围-128到127),那么该数据会被共享不会重新开辟空间。System.out.println(x.equals(y));//trueInteger c = 128;Integer d = 128;System.out.println(c==d);//falseSystem.out.println(c.equals(d));//true}}

0 0
原创粉丝点击