stream api in java 8

stream api in java 8
JAVA8 Stream API The most powerful feature in Java8 is introducing Java.Util.Stream package. By Steam API, We can do filter,map,reduce like operations on a collection . It is very useful as many times we need to filter a collection based on some...

Anonymous Function in java 8 using lambda

Anonymous Function in java 8 using lambda
Java8 Lambda Expression In this article, we will discuss Java8 most debated feature Lambda Expression. What is a Lambda Expression? In brief, I can say Lambda Expression is the way of passing functions into a function. Where Passing function...