El método shortValue() en Float Class es un método incorporado en Java que devuelve el valor especificado llamando al objeto como short después de encasillarlo.
Sintaxis :
public short shortValue()
Valor devuelto: Devuelve el valor de FloatObject como short .
Los siguientes programas ilustran el método shortValue() en Java:
Programa 1:
Java
// Java code to demonstrate // Float shortValue() 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); // shortValue of the Float Object short output = b.shortValue(); // print shorting the output System.out.println("Short value of " + b + " is : " + output); } }
Producción:
Short value of 17.47 is : 17
Programa 2:
Java
// Java code to demonstrate // Float shortValue() method class GFG { public static void main(String[] args) { String value = "54.1f"; // wrapping the Float value // in the wrapper class Float Float b = new Float(value); // shortValue of the Float Object short output = b.shortValue(); // print shorting the output System.out.println("Short value of " + b + " is : " + output); } }
Producción:
Short value of 54.1 is : 54
Referencia: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#shortValue()