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");
//from ww w . ja v a2 s . c o m
double d = integerObject.doubleValue();
System.out.println("double:"+d);
}
}
The output: