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


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


Short类decode()方法

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

用法:

    public static Byte decode(String str);

参数:

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

返回值:

这个方法的返回类型是Byte,它返回保存由 String 类型的参数表示的字节值的 Byte。

例:

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

public class DecodeOfByteClass {
    public static void main(String[] args) {
        // Variables initialization
        byte by = 100;
        String str = "20";

        // Byte object initialized with "byte" value
        Byte value1 = new Byte(by);

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

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

        Byte result = value1.decode(str);

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

输出

value1:100
value1.decode(str):20


相关用法


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