關於Integer.valueOf()從快取池取物件的用法

bug不存在的發表於2021-10-08

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);

    }

}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70007877/viewspace-2794996/,如需轉載,請註明出處,否則將追究法律責任。

相關文章