Wednesday, June 10, 2026
HomeLanguagesJavaDouble doubleValue() method in Java with examples

Double doubleValue() method in Java with examples

The doubleValue() method of Double class is a built in method to return the value specified by the calling object as double after type casting. Syntax:

DoubleObject.doubleValue()

Return Value: It return the value of DoubleObject as double. Below programs illustrate doubleValue() method in Java: Program 1: 

Java




// Java code to demonstrate
// Double doubleValue() method
 
class GFG {
    public static void main(String[] args)
    {
 
        // Double value
        Double a = 17.47;
 
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(a);
 
        // doubleValue of the Double Object
        double output = b.doubleValue();
 
        // print doubling the output
        System.out.println("Double value of "
                           + b + " is : " + output);
    }
}


Output:

Double value of 17.47 is : 17.47

Program 2: 

Java




// Java code to demonstrate
// Double doubleValue() method
 
class GFG {
    public static void main(String[] args)
    {
 
        String value = "54.1";
 
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(value);
 
        // doubleValue of the Double Object
        double output = b.doubleValue();
 
        // print doubling the output
        System.out.println("Double value of "
                           + b + " is : " + output);
    }
}


Output:

Double value of 54.1 is : 54.1
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS