IntConsumer Interface is a part of the java.util.function package which is introduced in Java 8. It is an in-built Functional Interface. This function expect a single int-valued argument as input but produces no output. In this post, we are going to see several implementations of IntConsumer Interface by using different examples.

IntConsumer_Interface_Java8_Techndeck

IntConsumer Interface in Java 8 with Examples...!!! Click To Tweet

Look at IntConsumer Javadoc description below:

IntConsumerInterface_Signature_Java8_Techndeck

 

 

 

 

 

IntConsumer Interface contains 2 methods:

  1. accept 

  2. andThen

 

Let’s discuss these methods:

accept 

This method performs operation on the given argument and return no result.

 

Below are the several examples to demonstrate accept() method:

Example 1. ‘accept’

 

andThen

This method returns a composed IntConsumer that performs, in sequence, this operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after operation will not be performed.

 

Below are the several examples to demonstrate andThen() method:

Example 2. ‘andThen’

 

Java 8 IntConsumer Interface is an absolute useful addition as part of ‘Functional Interfaces’ and can serve variety of purposes. It is quite powerful as it can be used as a higher order functions through lambda functions and above examples could help you to get better idea on how to implement it.

 

IntConsumer Interface in Java 8 with Examples...!!! Click To Tweet

 

Do you like this Post? – then check my other helpful posts:

Other Useful References: