Thursday, December 11, 2025
HomeLanguagesJavaInteger doubleValue() Method in Java

Integer doubleValue() Method in Java

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:




// Code to illustrate doubleValue() method
import java.lang.Integer;
  
class Gfg {
      
// Driver code
    public static void main(String args[])
    {
        Integer a = new Integer(14);
  
        // Convert Integer number to double value
        double b = a.doubleValue();
  
        System.out.println(b);
    }
}


Output:

14.0

Program 2:




// Code to illustrate doubleValue() method
import java.lang.Integer;
  
class Gfg {
      
// Driver code
    public static void main(String args[])
    {
        Integer a = new Integer(120);
  
        // Convert Integer number to double value
        double b = a.doubleValue();
  
        System.out.println(b);
    }
}


Output:

120.0
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7195 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS