Java.lang Package Classes

Java Double - intValue() Method



The java.lang.Double.intValue() method returns the value of this Double as an int after a narrowing primitive conversion.

Syntax

public int intValue()

Parameters

No parameter is required.

Return Value

Returns the double value represented by this object converted to type int.

Exception

NA.

Example:

In the example below, the java.lang.Double.intValue() method returns a Double object after conversion to type int.

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //creating Double objects
    Double val1 = 25.2;
    Double val2 = -25.2;

    //printing intValue of the Double objects
    System.out.println("intValue of the val1 is: " + val1.intValue()); 
    System.out.println("intValue of the val2 is: " + val2.intValue());   
  }
}

The output of the above code will be:

intValue of the val1 is: 25
intValue of the val2 is: -25

❮ Java.lang - Double