Integer.valueof(String s)和Integer.parseInt(String s)的具體區別是什麼?

時光機jay發表於2020-10-08

 他們有本質區別,Integer.valueof(String s)是將一個包裝類是將一個實際值為數字的變數先轉成string型再將它轉成Integer型的包裝類物件(相當於轉成了int的物件)這樣轉完的物件就具有方法和屬性了。
而Integer.parseInt(String s)只是將是數字的字串轉成數字,注意他返回的是int型變數不具備方法和屬性。

parseXXX()返回的是基本型別,例如parseInt()返回int型;

valueOf()返回的是物件型別,例如valueOf()返回Integer型別;

最容易被忽視的是:

        被valueOf()轉型的數值,如果超過【範圍:128至127】,即使重新賦值給int型,也不能直接對比大小(編譯能通過,但比較的結果是錯的),不信試試。

parseInt原始碼:

public static int parseInt(String s) throws NumberFormatException {
        return parseInt(s,10);
    }
 
    public static int parseInt(String s, int radix)
                throws NumberFormatException {
        /*
         * WARNING: This method may be invoked early during VM initialization
         * before IntegerCache is initialized. Care must be taken to not use
         * the valueOf method.
         */
 
        if (s == null) {
            throw new NumberFormatException("null");
        }
 
        if (radix < Character.MIN_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " less than Character.MIN_RADIX");
        }
 
        if (radix > Character.MAX_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " greater than Character.MAX_RADIX");
        }
 
        int result = 0;
        boolean negative = false;
        int i = 0, len = s.length();
        int limit = -Integer.MAX_VALUE;
        int multmin;
        int digit;
 
        if (len > 0) {
            char firstChar = s.charAt(0);
            if (firstChar < '0') { // Possible leading "+" or "-"
                if (firstChar == '-') {
                    negative = true;
                    limit = Integer.MIN_VALUE;
                } else if (firstChar != '+')
                    throw NumberFormatException.forInputString(s);
 
                if (len == 1) // Cannot have lone "+" or "-"
                    throw NumberFormatException.forInputString(s);
                i++;
            }
            multmin = limit / radix;
            while (i < len) {
                // Accumulating negatively avoids surprises near MAX_VALUE
                digit = Character.digit(s.charAt(i++),radix);
                if (digit < 0) {
                    throw NumberFormatException.forInputString(s);
                }
                if (result < multmin) {
                    throw NumberFormatException.forInputString(s);
                }
                result *= radix;
                if (result < limit + digit) {
                    throw NumberFormatException.forInputString(s);
                }
                result -= digit;
            }
        } else {
            throw NumberFormatException.forInputString(s);
        }
        return negative ? result : -result;
    }
當使用 public static int parseInt(String s) 方法的時候會去呼叫public static int parseInt(String s, int radix),這個方法可以將字串解析成不同進位制的int型別的數, 直接呼叫public static int parseInt(String s)會預設10進位制。

valueOf原始碼:

public static Integer valueOf(String s) throws NumberFormatException {
        return Integer.valueOf(parseInt(s, 10));
    }
如果使用public static Integer valueOf(String s) 方法,兩者的區別就在於返回值型別不同,parseInt返回值是int型別,valueOf返回值型別是Integer型別。

 public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }
 
    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;
        }
 
        private IntegerCache() {}
    }
呼叫public static Integer valueOf(int i) 方法是,首先會呼叫IntegerCache(), IntegerCache()其原始碼中為 [-128 , 128) 之間的Integer物件進行了快取以提高效率。

下面這題可以幫助理解:

    Integer a = 130;
    Integer b = Integer.valueOf(130);
    System.out.println(a == b); // 結果為false;
 
    Integer c = 20;
    Integer d = Integer.valueOf(20);
    System.out.println(c == d); // 結果為true;
原因是:如果整數的範圍在[-128 , 128) 之間,會直接從快取中取值,而如果整數的範圍不在[-128 , 128)之間會在堆記憶體中new出一個新的Integer型別的物件。

 

 

相關文章