VOOZH about

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

⇱ OptionalInt ifPresent(IntConsumer) method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

OptionalInt ifPresent(IntConsumer) method in Java with examples

Last Updated : 11 Jul, 2025

The ifPresent(java.util.function.IntConsumer) 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 does nothing. 

Syntax:

public void ifPresent(IntConsumer action)

Parameters: This method accepts a parameter action which is the action to be performed on this Optional, if a 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. 

Below programs illustrate ifPresent(IntConsumer) method: 

Program 1: 

Output: 👁 Image
Program 2: 

Comment