Open In App

OptionalLong empty() method in Java with examples

Last Updated : 11 Apr, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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

public static OptionalLong empty()

Parameters: This method accepts nothing. Return value: This method returns an empty OptionalLong. Below programs illustrate empty() method: Program 1: 

Java




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


Output:

OptionalLong: OptionalLong.empty

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads