VOOZH about

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

⇱ OptionalInt ifPresentOrElse() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

OptionalInt ifPresentOrElse() method in Java with examples

Last Updated : 11 Jul, 2025
The ifPresentOrElse(java.util.function.IntConsumer, java.lang.Runnable) method helps us to perform the specified IntConsumer action the value of this OptionalInt object. If a value is not present in this OptionalInt, then this method performs the given empty-based Runnable emptyAction, passed as the second parameter Syntax:
public void ifPresentOrElse(IntConsumer action,
 Runnable emptyAction)
Parameters: This method accepts two parameters:
  • action: which is the action to be performed on this Optional, if a value is present.
  • emptyAction: which is the empty-based action to be performed, if no value is present.
Return value: This method returns nothing. Exception: This method throw NullPointerException if a value is present and the given action is null, or no value is present and the given empty-based action is null. Below programs illustrate ifPresentOrElse() method: Program 1: Output:
Value is present, its: 12
Program 2:
Comment