VOOZH about

URL: https://www.geeksforgeeks.org/java/double-doublevalue-method-in-java-with-examples/

⇱ Double doubleValue() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

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: 

Output:
Double value of 17.47 is : 17.47

Program 2: 

Output:
Double value of 54.1 is : 54.1
Comment