El método java.lang.Float.longValue() en Float Class es un método incorporado en Java que devuelve el valor especificado por el objeto que llama mucho tiempo después de la conversión de tipos.
Sintaxis:
public long longValue()
Parámetros: No toma parámetros.
Tipo de devolución: devuelve un valor largo , es decir, el tipo de valor emitido del FloatObject.
A continuación se muestra la implementación del método anterior.
Programa 1:
// Java Code to implement // longValue() method of Float class class GFG { // Driver method public static void main(String[] args) { // creating a Float object Float d = new Float(1022); // longValue() method of Float class // typecast the value long output = d.longValue(); // printing the output System.out.println(output); } }
Producción:
1022
Programa 2:
// Java Code to implement // longValue() method of Float class class GFG { // Driver method public static void main(String[] args) { // creating a Float object Float d = new Float(-1023.23); // longValue() method of Float class // typecast the value long output = d.longValue(); // printing the output System.out.println(output); } }
Producción:
-1023
Referencia: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#longValue()