Lambda Expression

Posts tagged Lambda Expression

Java 8 Stream API

Introduction In this tutorial I will explain about Java’s new API called stream, which was introduced in Java 8 and included in package java.util.stream. The stream API supports…

Java Lambda Expressions

Introduction When implementation of anonymous class is very simple, for example, an interface contains only one method, then the syntax of anonymous classes may seem unclear. In this…