Integer.valueof(String s)和Integer.parseInt(String s)的具體區別是什麼?
他們有本質區別,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型別的物件。
相關文章
- String s = “hello“和String s = new String(“hello“)的區別
- String,StringBuffer, StringBuilder 的區別是什麼?String為什麼是不可變的?UI
- String str=null; 和String str=""的區別Null
- k8s和Docker是什麼?兩者有什麼區別?K8SDocker
- C#中String和string區別C#
- docker和k8s有什麼區別DockerK8S
- String s = new String(" a ") 到底產生幾個物件?物件
- String s=new String("abc")建立了幾個物件?物件
- String.valueOf和強制型別轉換(String)的區別型別
- Go 中 type var string 和 type var = string 的區別Go
- String a = "abc" 與String b = new String("abc")的區別
- StringBuilder和String 的區別?UI
- StringBuilder和String的區別UI
- String和StringBuilder的區別UI
- 樂視電視X系列和S系列有什麼區別?
- iPhone 7和6s有什麼區別?蘋果7和6s對比影片iPhone蘋果
- 在xpath中text()和string(.)的區別
- 【S13】vector和string優先於動態分配的記憶體記憶體
- JAVA面試題 String s = new String("xyz");產生了幾個物件?Java面試題物件
- 動態字串%d %s ------android String字串Android
- C/S和B/S結構區別整理
- getElementById()s是什麼
- 67. StringBuilder和String 的區別?UI
- Object類和String類equals方法的區別Object
- Java String.valueOf 和 toString的區別Java
- B/S與C/S的區別
- Java 中的 String 為什麼是不可變的?Java
- 紅米note9和紅米note9s有什麼區別
- 樂視超級電視X系列和S系列有什麼區別?
- 騰訊雲伺服器s3與s2有什麼區別?伺服器S3
- 小米6和小米5s對比評測 小米6和小米5s有什麼區別
- C/S和B/S應用程式的本質區別
- 原來ITPUB’s BLOG 和space是有區別的
- [Java基礎]String 為什麼是不可變的?Java
- 什麼是5S工具?
- 什麼是PCB?什麼是PCBA?PCB和PCBA的區別?
- vivo x9和X9s Plus區別對比 vivo X9s和X9sPlus有什麼區別?
- C/S,B/S的應用的區別