Short.doubleValue() has the following syntax.
public double doubleValue()
In the following code shows how to use Short.doubleValue() method.
public class Main { public static void main(String[] args) { Short shortObject = new Short("10"); double d = shortObject.doubleValue(); System.out.println("double:"+d); } }
The output: