java.lang.Integer.valueOf(String s, int radix) 方法返回一個Integer物件從指定提取String 的值s當第二個引數基數給出的基數進行分析。
以下是java.lang.Integer.valueOf()方法的宣告
public static Integer valueOf(String s, int radix) throws NumberFormatException
s -- 這是要被解析的字串。
radix -- 這是解釋s至使用的進位制。
此方法返回一個Integer物件持有指定基數的字串引數表示的值。
NumberFormatException -- 如果該串不包含一個可分析的詮釋。
下面的例子顯示java.lang.Integer.valueOf()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer i = new Integer(30); String str = "50"; /* returns a Integer instance representing the specified string with radix 10 */ System.out.println("Value = " + i.valueOf(str, 10)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Value = 50