A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/integer-doublevalue-method-in-java/ below:

Integer doubleValue() Method in Java

Integer doubleValue() Method in Java

Last Updated : 07 Jul, 2018

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: java
// 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);
    }
}
Program 2: java
// 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);
    }
}


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4