java.lang.Integer.valueOf(String s)方法實例
java.lang.Integer.valueOf(String s) 方法返回一個Integer對象持有的指定字符串s的值。
聲明
以下是java.lang.Integer.valueOf()方法的聲明
public static Integer valueOf(String s) throws NumberFormatException
參數
-
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 = "5"; // returns a Integer instance representing the specified string System.out.println("Value = " + i.valueOf(str)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Value = 5