A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/double-doublevalue-method-in-java-with-examples/ below:

Double doubleValue() method in Java with examples

Double doubleValue() method in Java with examples

Last Updated : 11 Jul, 2025

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


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4