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: