位置:首页 > Java技术 > java.lang > java.lang.Integer.valueOf(String s, int radix)方法实例

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