java.lang.Number.shortValue() es un método incorporado en Java que devuelve el valor del número especificado convertido en un tipo de datos corto. Esto puede implicar redondeo o truncamiento.
Sintaxis:
public abstract short shortValue()
Parámetros : Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el valor numérico representado por este objeto después de la conversión a tipo corto.
Los siguientes programas ilustran el método Number.shortValue():
Programa 1:
// java program that demonstrates // Number.shortValue() method public class gfg { public static void main(String[] args) { // get a number as float Float x = new Float(7854123456f); // print the value as short System.out.println(x.shortValue()); // get a number as double Double y = new Double(98774856); // print the value as short System.out.println(y.shortValue()); } }
Producción:
-1 12104
Programa 2:
// java program that demonstrates // Number.shortValue() method public class gfg { public static void main(String[] args) { // get a number as float Float x = new Float(78f); // print the value as short System.out.println(x.shortValue()); // get a number as double Double y = new Double(56.23); // print the value as short System.out.println(y.shortValue()); } }
Producción:
78 56
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