El método doubleValue() de la clase Byte es un método incorporado en Java que se usa para devolver el valor de este objeto Byte como doble.
Sintaxis
ByteObject.doubleValue()
Tipo de retorno: Devuelve el valor de ByteObject como doble .
A continuación se muestra la implementación del método doubleValue() en Java:
Ejemplo 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); } }
Producción:
Double value of 17 is : 17.0
Ejemplo 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); } }
Producción:
Double value of 17 is : 17.0