Saturday, June 13, 2026
HomeLanguagesJavaOptionalLong orElseThrow() method in Java with examples

OptionalLong orElseThrow() method in Java with examples

OptionalLong help us to create an object which may or may not contain a Long value. The orElseThrow() method help us to get the value and if value is not present then this method will throw NoSuchElementException. Syntax:

public Long orElseThrow()

Parameters: This method accepts nothing. Return value: This method returns the Long value described by this OptionalLong. Exception: This method throws NoSuchElementException if no value is present Below programs illustrate orElseThrow() method: Program 1: 

Java




// Java program to demonstrate
// OptionalLong.orElseThrow() method
import java.util.OptionalLong;
 
public class GFG {
 
    public static void main(String[] args)
    {
 
        // create a OptionalLong
        OptionalLong opLong = OptionalLong.of(45213246);
 
        // get value using orElseThrow()
        System.out.println("Value extracted using"
                           + " orElseThrow() = "
                           + opLong.orElseThrow());
    }
}


Output:

Value extracted using orElseThrow() = 45213246

Program 2: 

Java




// Java program to demonstrate
// OptionalLong.orElseThrow() method
 
import java.util.OptionalLong;
 
public class GFG {
 
    public static void main(String[] args)
    {
 
        // create a OptionalLong
        OptionalLong opLong = OptionalLong.empty();
 
        try {
 
            // try to get value from empty OptionalLong
            long value = opLong.orElseThrow();
        }
        catch (Exception e) {
 
            System.out.println("Exception thrown : "
                               + e);
        }
    }
}


Output:

Exception thrown : java.util.NoSuchElementException: No value present

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS