Functional Interfaces in Java

This lesson explains the concept of functional interfaces which were introduced in Java 8.

What are functional interfaces?

An interface that has a single abstract method is called a functional interface.

While ...