El método shortValue() de la clase Double es un método integrado para devolver el valor especificado por el objeto que llama como corto después de la conversión de tipos.
Sintaxis :
DoubleObject.shortValue()
Valor de retorno: Devuelve el valor de DoubleObject como short .
Los siguientes programas ilustran el método shortValue() en Java:
Programa 1:
Java
// Java code to demonstrate // Double shortValue() method class GFG { public static void main(String[] args) { // Double value Double a = 17.47; // wrapping the Double value // in the wrapper class Double Double b = new Double(a); // shortValue of the Double 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 // Double shortValue() method class GFG { public static void main(String[] args) { String value = "54.1"; // wrapping the Double value // in the wrapper class Double Double b = new Double(value); // shortValue of the Double 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