VOOZH about

URL: https://www.geeksforgeeks.org/java/optionalint-orelseint-method-in-java-with-examples/

⇱ OptionalInt orElse(int) method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

OptionalInt orElse(int) method in Java with examples

Last Updated : 14 Apr, 2023

The orElse(int) method helps us to get the value in this OptionalInt object. If a value is not present in this OptionalInt, then this method returns the value passed as the parameter. 

Syntax:

public int orElse(int other)

Parameters: This method accepts int the value to be returned, if no value is present. 

Return value: This method returns the value, if present, otherwise other. 

Below programs illustrate orElse() method: 

Program 1: 

Output:
value: 452146

Program 2: 

Comment