Java.lang.Integer.valueOf() 方法

描述

java.lang.Integer.valueOf(String s) 方法返回一个 Integer 对象,该对象保存指定 String s 的值。


声明

以下是 java.lang.Integer.valueOf() 方法的声明。

public static Integer valueOf(String s) throws NumberFormatException

参数

s − 这是要解析的字符串。


返回值

此方法返回一个 Integer 对象,该对象包含由字符串参数表示的值。


异常

NumberFormatException − 如果字符串不能被解析为整数。


示例

下面的例子展示了 java.lang.Integer.valueOf() 方法的使用。

package com.tutorialspoint;

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