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