Doble método intValue() en Java con ejemplos

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

Publicación traducida automáticamente

Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *