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


Java Short decode()用法及代码示例


Short类decode()方法

  • decode() 方法可在java.lang包。
  • decode() 方法用于将给定的 String 值解码为 Short 值。
  • decode() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • decode() 方法在将字符串解码为 Short.NumberFormatException 时可能会抛出 NumberFormatException:在此异常中,如果给定的字符串参数没有可解析的 short。

用法:

    public static Short decode(String str);

参数:

  • String str– 表示要解码的字符串。

返回值:

这个方法的返回类型是Short,它返回持有由 String 类型参数表示的 short 值的 Short 。

例:

// Java program to demonstrate the example 
// of decode(String str) method of Short class

public class DecodeOfShortClass {
    public static void main(String[] args) {
        // Variables initialization
        short s = 100;
        String str = "20";

        // Short object initialized with "short" value
        Short value1 = new Short(s);

        // Display value1 result
        System.out.println("value1:" + value1);

        // It returns an Short object holding the short value 
        // denoted by the given String argument by calling 
        //value1.decode(str)

        Short result = value1.decode(str);

        // Display result
        System.out.println("value1.decode(str):" + result);
    }
}

输出

value1:100
value1.decode(str):20


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Short class decode() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。