当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



描述

这个java.lang.Short.valueOf(String s) 方法返回一个包含指定值的 Short 对象String

声明

以下是声明java.lang.Short.valueOf()方法

public static Short valueOf(String s) throws NumberFormatException

参数

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

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

Short object representing the specified short value = 100
Short object holding the value given by the specified String = 600

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Short.valueOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。