Java - Integer valueOf(String s) 方法



描述

Java Integer valueOf(String s) 方法返回一个 Integer 对象,其中包含指定字符串 s 的值。

声明

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

public static Integer valueOf(String s) throws NumberFormatException

参数

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

返回值

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

异常

NumberFormatException − 如果字符串无法解析为整数。

从包含正整数的字符串中获取 Integer 的示例

以下示例演示了如何使用 Integer valueOf(String s) 方法,通过包含整数值的指定字符串来获取 Integer 对象。我们创建了一个字符串变量并为其分配了一个正整数的值。然后使用 valueOf() 方法获取对象并打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      String s = "170";
      System.out.println("String = " + s);
    
      /* returns the Integer object of the given string */
      System.out.println("valueOf = " + Integer.valueOf(s));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

String = 170
valueOf = 170

从包含负整数的字符串中获取 Integer 的示例

以下示例演示了如何使用 Integer valueOf(String s) 方法,通过包含整数值的指定字符串来获取 Integer 对象。我们创建了一个字符串变量并为其分配了一个负整数的值。然后使用 valueOf() 方法获取对象并打印它。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      String s = "-170";
      System.out.println("String = " + s);
    
      /* returns the Integer object of the given string */
      System.out.println("valueOf = " + Integer.valueOf(s));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

String = -170
valueOf = -170

从包含八进制值的字符串中获取 Integer 时遇到异常的示例

以下示例演示了如何使用 Integer valueOf(String s) 方法,通过包含无效整数值的指定字符串来获取 Integer 对象。我们创建了一个字符串变量并为其分配了一个无效整数的值。然后使用 valueOf() 方法尝试获取对象并打印它。它将抛出 NumberFormatException。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      String s = "0x170";
      System.out.println("String = " + s);
    
      /* returns the Integer object of the given string */
      System.out.println("valueOf = " + Integer.valueOf(s));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

String = 0x170
Exception in thread "main" java.lang.NumberFormatException: For input string: "0x170"
	at java.lang.NumberFormatException.forInputString(Unknown Source)
	at java.lang.Integer.parseInt(Unknown Source)
	at java.lang.Integer.valueOf(Unknown Source)
	at com.tutorialspoint.IntegerDemo.main(IntegerDemo.java:11)
java_lang_integer.htm
广告