Skip to content
Related Articles
Open in App
Not now

Related Articles

OptionalLong empty() method in Java with examples

Improve Article
Save Article
Like Article
  • Last Updated : 01 May, 2019
Improve Article
Save Article
Like Article

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 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();
  
        // prLong 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()

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!