Java.lang.Short.doubleValue() Method
Advertisements
Description
The java.lang.Short.doubleValue() method returns the value of this Short as a double.
Declaration
Following is the declaration for java.lang.Short.doubleValue() method
public double doubleValue()
Parameters
NA
Return Value
This method returns the numeric value represented by this object after conversion to type double.
Exception
NA
Example
The following example shows the usage of java.lang.Short.doubleValue() method.
package com.tutorialspoint;
import java.lang.*;
public class ShortDemo {
public static void main(String[] args) {
// create short object and assign value to it
short sval = 100;
Short sobj = new Short(sval);
// returns double value of Short
double doubleValue = sobj.doubleValue();
// printing double value
System.out.println("double value of Short is = " + doubleValue);
}
}
Let us compile and run the above program, this will produce the following result:
double value of Short is = 100.0