Monday, March 15, 2021

Java 8 Stream API

Java stream API is the hot feature of java 8. Java stream represents a sequence of elements or objects and it supports different kind of operations to on it. Stream does not store elements.

It simply conveys the elements from a source such as a data structure, an array, or an I/O channel, through a pipeline of computational operations.