Java.lang.Short.parseShort() 方法

描述

java.lang.Short.parseShort(String s, int radix) 方法将字符串参数解析为第二个参数指定的 radix 中的有符号短整数。


声明

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

public static short parseShort(String s, int radix) throws NumberFormatException

参数

  • s − 这是一个包含要解析的短表示的字符串。

  • radix − 这是解析 s 时要使用的基数


返回值

该方法返回指定基数的字符串参数所表示的short。


异常

NumberFormatException − 如果字符串不包含可解析的short。


示例

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

package com.tutorialspoint;

import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

      String str = "1000";

      // returns signed decimal short value of string
      short shortValue = Short.parseShort(str); 
    
      // prints signed decimalshort value
      System.out.println("Signed decimal short value for given String is =
         " + shortValue);  
	 
      // returns the string argument as a signed short in the radix
      shortValue = Short.parseShort(str,2);
      System.out.println("Signed decimal short value for specified String
         with radix 2 is = " + shortValue);

      // returns the string argument as a signed short in the radix
      shortValue = Short.parseShort("11",8);
      System.out.println("Signed decimal short value for specified String
         with radix 8 is = " + shortValue);
   }
}   

让我们编译并运行上面的程序,这将产生下面的结果 −

Signed decimal short value for given String is = 1000
Signed decimal short value for specified String with radix 2 is = 8
Signed decimal short value for specified String with radix 8 is = 9