java.lang.Short.parseShort(String s)方法範例


java.lang.Short.parseShort(String s) 方法解析字串引數為有符號的十進位制short值。

宣告

以下是java.lang.Short.parseShort()方法的宣告

public static short parseShort(String s) throws NumberFormatException

引數

  • s -- 這是要分析包含short表示的字串。

返回值

此方法返回由十進位制引數表示的short值。

異常

  • NumberFormatException -- 如果該字串不包含一個可分析的short。

例子

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

package com.yiibai;

import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

     String str = "250";

     // 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);  
  }
}   

讓我們來編譯和執行上面的程式,這將產生以下結果:

Signed decimal short value for String is = 250