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和StringBuilder的區別UI
- StringBuilder和String 的區別?UI
- String s = new String(" a ") 到底產生幾個物件?物件
- Go 中 type var string 和 type var = string 的區別Go
- String.valueOf和強制型別轉換(String)的區別型別
- k8s和Docker是什麼?兩者有什麼區別?K8SDocker
- 67. StringBuilder和String 的區別?UI
- 什麼是.NET的強型別字串(Strongly typed string)?型別字串
- docker和k8s有什麼區別DockerK8S
- 在xpath中text()和string(.)的區別
- Java String.valueOf 和 toString的區別Java
- String,StringBuilder,StringBuffer的區別UI
- String、StringBuffer、StringBuilder的區別UI
- String、StringBuilder、StringBuffer的區別UI
- String StringBuild StringBuffer的區別UI
- JAVA面試題 String s = new String("xyz");產生了幾個物件?Java面試題物件
- String、StringBuffer、StringBuilder區別?UI
- String,StringBuffer,StringBuilder區別UI
- String,StringBuffer與StringBuilder的區別UI
- String.isEmpty()比"" .equals(s)或s.equals("")效能更快 - Dmytro Dumanskiy
- getElementById()s是什麼
- String s="a"+"b"+"c",到底建立了幾個物件?物件
- JavaScript的String和Boolean型別JavaScriptBoolean型別
- GO語言中string和[]byte的區別及轉換Go
- [Java基礎]String 為什麼是不可變的?Java
- Android- String、StringBuffer、StringBuilder區別AndroidUI
- python is和==的區別是什麼?Python
- C/S,B/S的應用的區別
- Java之String的equals與contentEquals區別Java
- Rust中 String、str、&str、char 的區別Rust
- 騰訊雲伺服器s3與s2有什麼區別?伺服器S3
- 什麼是5S工具?
- ArrayList和LinkedList的區別是什麼
- cat和vim的區別是什麼?
- reactjs和vuejs的區別是什麼ReactJSVue
- 127.0.0.1和0.0.0.0的區別是什麼?127.0.0.1
- String 型別型別