The doubleValue() method of Integer class of java.lang package is used to convert the value of the given Integer to a Double type after a widening primitive conversion and returns it.
Syntax:
public double doubleValue()
Parameters: The method does not take any parameter.
Return Value: This method returns a numeric value represented by this object after conversion to double type.
Below programs illustrate java.lang.Integer.doubleValue() method.
Program 1:
import java.lang.Integer;
class Gfg {
public static void main(String args[])
{
Integer a = new Integer( 14 );
double b = a.doubleValue();
System.out.println(b);
}
}
|
Program 2:
import java.lang.Integer;
class Gfg {
public static void main(String args[])
{
Integer a = new Integer( 120 );
double b = a.doubleValue();
System.out.println(b);
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jul, 2018
Like Article
Save Article