El método floatValue() en Float Class es una función integrada en Java que devuelve el valor especificado por el objeto que llama como flotante después de la conversión de tipos.
Sintaxis :
public float floatValue()
Valor de retorno: Devuelve el valor de FloatObject como float .
Los siguientes programas ilustran el método floatValue() en Java:
Programa 1:
Java
// Java code to demonstrate // Float floatValue() method class GFG { public static void main(String[] args) { // Float value Float a = 17.47f; // wrapping the Float value // in the wrapper class Float Float b = new Float(a); // floatValue of the Float Object float output = b.floatValue(); // prfloating the output System.out.println("Float value of " + b + " is : " + output); } }
Producción:
Float value of 17.47 is : 17.47
Programa 2:
Java
// Java code to demonstrate // Float floatValue() method class GFG { public static void main(String[] args) { String value = "54.1"; // wrapping the Float value // in the wrapper class Float Float b = new Float(value); // floatValue of the Float Object float output = b.floatValue(); // prfloating the output System.out.println("Float value of " + b + " is : " + output); } }
Producción:
Float value of 54.1 is : 54.1
Referencia: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#floatValue()