📌  相关文章
📜  Java中的 Byte doubleValue() 方法及示例

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

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

Byte 类的doubleValue()方法是Java中的一个内置方法,用于将此 Byte 对象的值作为双精度值返回。

句法

ByteObject.doubleValue()

返回类型:它以double形式返回 ByteObject 的值。

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

示例 1:

// Java code to demonstrate
// Byte doubleValue() 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);
  
        // doubleValue of the Byte Object
        double output = b.doubleValue();
  
        // printing the output
        System.out.println("Double value of "
                           + a + " is : " + output);
    }
}
输出:
Double value of 17 is : 17.0

示例 2:

// Java code to demonstrate
// Byte doubleValue() 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);
  
        // doubleValue of the Byte Object
        double output = b.doubleValue();
  
        // printing the output
        System.out.println("Double value of "
                           + b + " is : " + output);
    }
}
输出:
Double value of 17 is : 17.0