码迷,mamicode.com
首页 > 编程语言 > 详细

java Integer判等的大坑

时间:2018-01-24 15:30:13      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:system   log   直接   cache   gpo   范围   使用   ram   body   

在-128 至 127 范围内的赋值,Integer 对象是在IntegerCache.cache 产生,会复用已有对象,这个区间内的 Integer 值可以直接使用==进行 判断,但是这个区间之外的所有数据,都会在堆上产生,并不会复用已有对象,这是一个大坑, 推荐使用 equals 方法进行判断。 

public class Program {
    public static void main(String[] args) {
        Integer a1 = 1;
        Integer b1 = 1;
        System.out.println(a1 == b1);        // true
        System.out.println(a1.equals(b1));    // true
        System.out.println(a1 == 1);        // true

        Integer a2 = 128;
        Integer b2 = 128;
        System.out.println(a2 == b2);        // false
        System.out.println(a2.equals(b2));    // true
        System.out.println(a2 == 128);        // true
    }
}

 

java Integer判等的大坑

标签:system   log   直接   cache   gpo   范围   使用   ram   body   

原文地址:https://www.cnblogs.com/mousewheel/p/8341311.html

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