java.lang.Number.floatValue() es un método incorporado en Java que devuelve el valor del número especificado convertido al tipo de datos flotante. Esto puede implicar redondeo o truncamiento.
Sintaxis:
public abstract float floatValue()
Parámetros : Este método no acepta ningún parámetro.
Devoluciones: este método devuelve el valor numérico representado por este objeto después de la conversión a tipo flotante.
Los siguientes programas ilustran el método Number.floatValue():
Programa 1:
// Below program demonstrate the // Number.floatValue() method public class gfg { public static void main(String[] args) { // number with integer datatype Integer x = new Integer(1785423456); // print the value as float System.out.println(x.floatValue()); // number with double datatype Double y = new Double(97854876); // print the value as float System.out.println(y.floatValue()); } }
Producción:
1.78542349E9 9.785488E7
Programa 2:
// Below program demonstrate the // Number.floatValue() method public class gfg { public static void main(String[] args) { // number with integer datatype Integer x = new Integer(456); // print the value as float System.out.println(x.floatValue()); // number with double datatype Double y = new Double(96); // print the value as float System.out.println(y.floatValue()); } }
Producción:
456.0 96.0
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA