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.