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:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable