Articles, dummyCategory

Java 8 Lambda Expressions

In this post, we will discuss the most important feature of Java 8 that is Lambda Expressions. We will learn Lambda Expressions with lots of examples by comparing Java 7 and Java 8 examples.You can download the source code from my GitHub Repository. This blog can also help to migrate from Java 7 to Java 8.

Articles, dummyCategory

Java 8 Method References

Java provides a new feature called method reference in Java 8. Method reference is used to refer method of the functional interface. It is a compact and easy form of a lambda expression. Each time when you are using a lambda expression to just referring a method, you can replace your lambda expression with method reference.