Java Long.doubleValue()
Syntax
Long.doubleValue() has the following syntax.
public double doubleValue()
Example
In the following code shows how to use Long.doubleValue() method.
public class Main {
public static void main(String[] args) {
Long longObject = new Long("1234567");
double d = longObject.doubleValue();
System.out.println("double:"+d);
/* w w w . j a v a2 s.c om*/
}
}
The output: