El método floatValue() de la clase Double es un método integrado para devolver el valor especificado por el objeto que llama como flotante después de encasillarlo.
Sintaxis:
DoubleObject.floatValue()
Tipo de retorno: Devuelve un valor flotante , es decir, el tipo de valor emitido del DoubleObject.
Ejemplo 1:
Java
// Java Program to Implement floatValue() Method // of Double Class // Class class GFG { // Main driver method public static void main(String[] args) { // Creating a Double object Double d = new Double(23); // Typecasting the value using // floatValue() method of Double class float output = d.floatValue(); // Printing the double value on console System.out.println(output); } }
Producción:
Ejemplo 2:
Java
// Java Program to Implement floatValue() Method // of Double Class // Class class GFG { // Main driver method public static void main(String[] args) { // Taking a double value by // creating object of Double class Double d = new Double(-1023.15); // Typecasting the value using // floatValue() method of Double class float output = d.floatValue(); // Printing the above double value System.out.println(output); } }
Producción: