📜  Java中的 Byte shortValue() 方法及示例

📅  最后修改于: 2022-05-13 01:58:09.472000             🧑  作者: Mango

Java中的 Byte shortValue() 方法及示例

Byte 类的shortValue()方法是Java中的一个内置方法,用于将此 Byte 对象的值返回为 short。

句法

ByteObject.shortValue()

返回值:它以short形式返回ByteObject的

下面是Java中 shortValue() 方法的实现:

示例 1:

// Java code to demonstrate
// Byte shortValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // byte value
        byte a = 17;
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(a);
  
        // shortValue of the Byte Object
        short output = b.shortValue();
  
        // printing the output
        System.out.println("Short value of "
                           + a + " is : " + output);
    }
}
输出:
Short value of 17 is : 17

示例 2:

// Java code to demonstrate
// Byte shortValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "17";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // shortValue of the Byte Object
        short output = b.shortValue();
  
        // printing the output
        System.out.println("Short value of "
                           + b + " is : " + output);
    }
}
输出:
Short value of 17 is : 17