java.lang.Integer.valueOf(String s, int radix)方法實例
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