valueOf()
方法返回相關的Number
物件,其中包含傳遞的引數的值。 引數可以是原始資料型別,字串等。
這個方法是一種靜態方法。它接收兩個引數,其中一個是String
,另一個是基數。
語法
以下是此方法的所有變體 -
static Integer valueOf(int i)
static Integer valueOf(String s)
static Integer valueOf(String s, int radix)
i
- 將返回表示int
型別引數的Integer
物件。s
- 將返回字串引數的Integer
物件。radix
- 這將用於根據傳遞的String
確定返回Integer
的值。valueOf(int i)
- 返回一個包含指定原始值的Integer
物件。valueOf(String s)
- 返回一個包含指定字串表示形式值的Integer
物件。valueOf(String s, int radix)
- 返回一個Integer
物件,該物件包含指定字串表示形式的整數值,並使用radix
值進行解析。public class Test {
public static void main(String args[]) {
Integer x =Integer.valueOf(9);
Double c = Double.valueOf(5);
Float a = Float.valueOf("80");
Integer b = Integer.valueOf("444",16);
System.out.println(x);
System.out.println(c);
System.out.println(a);
System.out.println(b);
}
}
執行上面範例程式碼,得到以下結果:
9
5.0
80.0
1092