VOOZH about

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

⇱ Short doubleValue() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Short doubleValue() method in Java with Examples

Last Updated : 11 Jul, 2025
The java.lang.Short.doubleValue() method of Short class is a built in method in Java which is used to return the value of the Short object as a double. Syntax:
public double doubleValue()
Return type: It return the value of ShortObject as double. Below is the implementation of doubleValue() method in Java: Example 1:
Output:
Double value of 17 is : 17.0
Example 2:
Output:
Double value of 17 is : 17.0
Comment