Java Data Type Tutorial - Java Integer.doubleValue()








Syntax

Integer.doubleValue() has the following syntax.

public double doubleValue()

Example

In the following code shows how to use Integer.doubleValue() method.

public class Main {
  public static void main(String[] args) {
    Integer integerObject = new Integer("1234567");

    double d = integerObject.doubleValue();
    System.out.println("double:"+d);

  }
}

The output: