El método intValue() de la clase Double es un método integrado para devolver el valor especificado por el objeto que llama como int después de la conversión de tipos.
Sintaxis :
DoubleObject.intValue()
Valor de retorno: Devuelve el valor de DoubleObject como int .
Los siguientes programas ilustran el método intValue() en Java:
Programa 1:
// Java code to demonstrate // Double intValue() 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); // intValue of the Double Object int output = b.intValue(); // printing the output System.out.println("Int value of " + b + " is : " + output); } }
Producción:
Int value of 17.47 is : 17
Programa 2:
// Java code to demonstrate // Double intValue() 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); // intValue of the Double Object int output = b.intValue(); // printing the output System.out.println("Int value of " + b + " is : " + output); } }
Producción:
Int value of 54.1 is : 54