當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Short.parseShort() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。