Java - Short valueOf(String s) 方法



描述

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

声明

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

public static Short valueOf(String s) throws NumberFormatException

参数

s - 要解析的字符串。

返回值

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

异常

NumberFormatException - 如果字符串无法解析为 short 类型。

使用带正 short 值的字符串获取 Short 对象示例

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

package com.tutorialspoint;

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

输出

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

String = 170
valueOf = 170

使用带负 short 值的字符串获取 Short 对象示例

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

package com.tutorialspoint;

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

输出

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

String = -170
valueOf = -170

使用无效值的字符串获取 Short 对象时遇到异常的示例

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

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      String s = "0x170";
      System.out.println("String = " + s);
    
      /* returns the Short object of the given string */
      System.out.println("valueOf = " + Short.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.Short.parseShort(Unknown Source)
	at java.lang.Short.valueOf(Unknown Source)
	at java.lang.Short.valueOf(Unknown Source)
	at com.tutorialspoint.ShortDemo.main(ShortDemo.java:11)
java_lang_short.htm
广告