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


Java Java.lang.Short.valueOf()用法及代碼示例



描述

這個java.lang.Short.valueOf(String s, int radix) 方法返回一個 Short 對象,該對象保存從指定 String 中提取的值radix由第二個參數給出。

聲明

以下是聲明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.tutorialspoint;

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

相關用法


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