newszine

Java 8 IntConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 IntConsumer interface. IntConsumer Interface :- IntConsumer ( java.util.function.IntConsumer ) is a functional interface that has one abstract method and one default method declared in it. This interface is a specialised form of Consumer interface. Abstract method :-   void  accept ( int value ) :- The abstract method accept ( Read More

Java 8 BiConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 BiConsumer interface. BiConsumer Interface :- BiConsumer ( java.util.function.BiConsumer ) is a functional interface that has one abstract method and one default method declared in it. Abstract method :-   void  accept ( T t , U u ) :- The abstract method accept ( T t , U Read More

Java 8 Consumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 Consumer interface. Consumer Interface :- Consumer ( java.util.function.Consumer ) is a functional interface that has one abstract method and one default method declared in it. Abstract method :-   void  accept ( T t ) :- The abstract method accept ( T t ) is a functional method. Read More

Java 8 forEach method Example

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about new Java 8 forEach() method. Map’s forEach() method :- This method is called on map object, it takes BiConsumer as an argument and perform given action for each entry in the map until all entries have been processed or if action throws an exception. Syntax :-  default void forEach(BiConsumer<? Read More