Java.lang.Integer 类

java.lang.Integer.valueOf() 方法返回一个包含指定 String 值的 Integer 对象。该参数被解释为表示一个带符号的十进制整数,就像将该参数赋予 parseInt(java.lang.String) 方法一样。结果是一个 Integer 对象,表示由字符串指定的整数值。

换句话说,此方法返回一个等于 new Integer(Integer.parseInt(s)) 值的 Integer 对象。

语法

public static Integer valueOf(String s)
                       throws NumberFormatException

参数

s 指定字符串

返回值

返回一个 Integer 对象,其中包含字符串参数表示的值。

异常

如果字符串无法解析为整数,则抛出NumberFormatException

示例:

在下面的示例中, java.lang.Integer.valueOf() 方法返回一个 Integer 对象,其中包含指定 String 给出的值。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建一个保存int值的字符串
    String x = "25";

    //创建Integer对象
    Integer y = Integer.valueOf(x);

    //打印字符串
    System.out.println("The string is: " + x); 

    //打印Integer对象
    System.out.println("The Integer object is: " + y);   
  }
}

上述代码的输出将为:

The string is: 25
The Integer object is: 25