The java.lang.Number.doubleValue() is an inbuilt method in java that returns the value of the specified number casted as a double data type. This may involve rounding or truncation.
Syntax:
public abstract double doubleValue()
Parameters: This method does not accepts any parameter.
Return value: This method returns the numeric value represented by this object after conversion to type double.
Below programs illustrate the Number.doubleValue()method:
Program 1:
public class gfg {
public static void main(String[] args)
{
Integer x = new Integer( 1234785456 );
System.out.println(x.doubleValue());
Float y = new Float(98745876f);
System.out.println(y.doubleValue());
}
}
|
Output:
1.234785456E9
9.8745872E7
Program 2:
public class gfg {
public static void main(String[] args)
{
Integer x = new Integer( 123 );
System.out.println(x.doubleValue());
Float y = new Float(9876f);
System.out.println(y.doubleValue());
}
}
|