intとintegerの違いは何ですか?

2982 ワード

JAvaは各基本データ型に対応する包装タイプを導入し,intの包装タイプはintegerである.
import org.junit.Test;

/*
 *     
 */
public class AutoUnboxingTest {
public static void main(String [] args) {
	Integer a = new Integer(3);
	Integer b = 3;//  3     Integer  
	int c = 3;
	System.out.println(a==b);// false             
	System.out.println(a==c);// true a     int    c  
	System.out.println(b==c);// true
	
}


@Test
public void demo2() {
	Integer f1 = 100, f2 = 100, f3 = 150, f4 = 150;
    System.out.println(f1 == f2);//true
    System.out.println(f3 == f4);//false
}
}


不明であれば、両方の出力がtrueかfalseかと容易に考えられます.まず、f 1、f 2、f 3、f 4の4つの変数はいずれもIntegerオブジェクト参照であるため、以下の==演算で比較するのは値ではなく参照である.箱詰めの本質は何ですか?Integerオブジェクトにint値を割り当てると、Integerクラスの静的メソッドvalueOfが呼び出され、valueOfのソースコードを見ると何が起こっているかがわかります.
public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }

    /**
     * The value of the {@code Integer}.
     *
     * @serial
     */

IntegerCacheはIntegerの内部クラスで、そのコードは以下の通りです.
 /**
     * Cache to support the object identity semantics of autoboxing for values between
     * -128 and 127 (inclusive) as required by JLS.
     *
     * The cache is initialized on first usage.  The size of the cache
     * may be controlled by the {@code -XX:AutoBoxCacheMax=} option.
     * During VM initialization, java.lang.Integer.IntegerCache.high property
     * may be set and saved in the private system properties in the
     * sun.misc.VM class.
     */

    private static class IntegerCache {
        static final int low = -128;
        static final int high;
        static final Integer cache[];

        static {
            // high value may be configured by property
            int h = 127;
            String integerCacheHighPropValue =
                sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
            if (integerCacheHighPropValue != null) {
                try {
                    int i = parseInt(integerCacheHighPropValue);
                    i = Math.max(i, 127);
                    // Maximum array size is Integer.MAX_VALUE
                    h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
                } catch( NumberFormatException nfe) {
                    // If the property cannot be parsed into an int, ignore it.
                }
            }
            high = h;

            cache = new Integer[(high - low) + 1];
            int j = low;
            for(int k = 0; k < cache.length; k++)
                cache[k] = new Integer(j++);

            // range [-128, 127] must be interned (JLS7 5.1.7)
            assert IntegerCache.high >= 127;
        }

簡単に言えば、整数字面量の値が-128から127の間であれば、newの新しいIntegerオブジェクトではなく、定数プールのIntegerオブジェクトを直接参照するので、上記の面接問題のf 1 f 2の結果はtrueであり、f 3 f 4の結果はfalseである.