El método floatValue() de la clase Byte es un método incorporado en Java que se usa para devolver el valor de este objeto Byte como flotante.
Sintaxis
ByteObject.floatValue()
Valor de retorno: Devuelve el valor de ByteObject como float .
A continuación se muestra la implementación del método floatValue() en Java:
Ejemplo 1:
// Java code to demonstrate // Byte floatValue() 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); // floatValue of the Byte Object float output = b.floatValue(); // printing the output System.out.println("Float value of " + a + " is : " + output); } }
Producción:
Float value of 17 is : 17.0
Ejemplo 2:
// Java code to demonstrate // Byte floatValue() 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); // floatValue of the Byte Object float output = b.floatValue(); // printing the output System.out.println("Float value of " + b + " is : " + output); } }
Producción:
Float value of 17 is : 17.0