Java Short.doubleValue()
Syntax
Short.doubleValue() has the following syntax.
public double doubleValue()
Example
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);
/*w w w . j a v a2 s . c o m*/
}
}
The output: