Thursday, July 4, 2024
HomeLanguagesJavaOptionalDouble of(double) method in Java with examples

OptionalDouble of(double) method in Java with examples

The of(double) method help us to get an OptionalDouble object which contains a double value which is passed as a parameter to this method.

Syntax:

public static OptionalDouble of(double value)

Parameters: This method accepts a double value as parameter that will be set to the returned OptionalDouble object.

Return value: This method returns an OptionalDouble with the value present.

Below programs illustrate of(double) method:
Program 1:




// Java program to demonstrate
// OptionalDouble.of(double) method
  
import java.util.OptionalDouble;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a OptionalDouble instance
        // using of() method
        OptionalDouble opDouble
            = OptionalDouble.of(45213.246);
  
        // Get value of this OptionalDouble instance
        System.out.println("OptionalDouble: "
                           + opDouble);
    }
}


Output:

OptionalDouble: OptionalDouble[45213.246]

Program 2:




// Java program to demonstrate
// OptionalDouble.of(double) method
  
import java.util.OptionalDouble;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a OptionalDouble instance
        // using of() method
        OptionalDouble opDouble
            = OptionalDouble.of(21438999);
  
        // Get value of this OptionalDouble instance
        System.out.println("OptionalDouble: "
                           + opDouble);
    }
}


Output:

OptionalDouble: OptionalDouble[2.1438999E7]

References: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalDouble.html#of(double)

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments