Wednesday, July 3, 2024
HomeLanguagesJavaOptionalInt empty() method in Java with examples

OptionalInt empty() method in Java with examples

OptionalInt help us to create an object which may or may not contain a int value. The empty() method returns an empty OptionalInt instance. No value is present for this OptionalInt. So we can say that this method help us to create empty OptionalInt object.

Syntax: 

public static OptionalInt empty()

Parameters: This method accepts nothing.
Return value: This method returns an empty OptionalInt.

Below programs illustrate empty() method: 

Program 1:  

Java




// Java program to demonstrate
// OptionalInt.empty() method
 
import java.util.OptionalInt;
 
public class GFG {
 
    public static void main(String[] args)
    {
 
        // create a OptionalInt
        // using empty method
        OptionalInt opInt
            = OptionalInt.empty();
 
        // Print the created instance
        System.out.println("OptionalInt: "
                           + opInt.toString());
    }
}


Output: 

OptionalInt: OptionalInt.empty

 

References: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalInt.html#empty()
 

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