Java Double.valueOf(double d)

Syntax

Double.valueOf(double d) has the following syntax.

public static Double valueOf(double d)

Example

In the following code shows how to use Double.valueOf(double d) method.


public class Main {
/*from  w ww.  ja va2s .c  o m*/
   public static void main(String[] args) {

   
     System.out.println("Value = " +  Double.valueOf(3.5d));
   }
}

The code above generates the following result.





















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