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