Getting Started with Lambda Expressions in Java 8
Lambda Expressions are introduced in Java 8 and is the most prominent feature in this release of Java. This blog is a tutorial of Lambda Expression which will take you through all the details. At the end, you will be able to kick start using Lambda Expressions in your day to day programs. What is Lambda Expression ? Lambda expressions are expressions that aims to reduce writing clumsy code. Lambda expressions do not do technically anything new that couldn't be done before Java 8. Lambda expressions has following syntax : (parameter1, parameter2 ...) -> (statements or expressions) (First Part) (Second Part) (T...