java.lang.Short.valueOf(String s, int radix)方法範例


java.lang.Short.valueOf(String s, int radix) 方法返回保持從指定的String中提取的值,由第二個引數給出的基數進行分析short的物件。

宣告

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

public static Short valueOf(String s, int radix) throws NumberFormatException

引數

  • s -- 這是要被解析的字串。

  • radix -- 這是要解釋s至使用的進位制

返回值

此方法返回儲存由指定基數的字串引數表示的值的Short物件。

異常

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

例子

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

package com.yiibai;

import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

     short shortNum = 100;
     String str = "1000";
    
     // returns Short object representing given short value
     Short ShortValue = Short.valueOf(shortNum);
     // displays the short object value
     System.out.println("Short object representing the specified short value =
     " + ShortValue);
     
     // returns a Short object holding the value given by the specified String
     ShortValue = Short.valueOf(str); 
     // displays the short object value
     System.out.println("Short object holding the value given by the specified
     String = " + ShortValue); 
   
     /* returns a Short object holding the value from the specified String
     according to radix. */
     ShortValue = Short.valueOf(str , 2) ;
     // displays the short object value
     System.out.println("Short object value for specified String with radix 2
     =" + ShortValue);
    
     // returns a Short object holding the value for string to radix   
     ShortValue = Short.valueOf("15" , 8) ;
     // displays the short object value
     System.out.println("Short object value String 15 with radix 8
     = " + ShortValue);
  }
}

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

Short object representing the specified short value = 100
Short object holding the value given by the specified String = 1000
Short object value for specified String with radix 2 = 8
Short object value String 15 with radix 8 = 13