标题:关于Integer.valueOf()从缓存池取对象的用法
取消只看楼主
疯狂的小a
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:39
帖 子:423
专家分:1871
注 册:2018-2-6
结帖率:100%
已结贴  问题点数:20 回复次数:0 
关于Integer.valueOf()从缓存池取对象的用法
package com.xiaoa;

/**
 * @Auther: xiaoa
 * @Date: 2018.10.5 09:51
 * @Description:关于Integer.valueOf()从缓存池取对象的用法
 */
public class TestInteger {
    public static void main(String[] args) {
        final Integer a = new Integer(55);
        final Integer b = new Integer(55);
        System.out.println(a == b);
        final Integer c = Integer.valueOf(55);
        System.out.println(a == c);
        final Integer d = Integer.valueOf(55);
        System.out.println(c == d);
    }
}
搜索更多相关主题的帖子: Integer 缓存 对象 用法 System 
2018-10-05 10:13



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-490173-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.700874 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved