Functional Interfaces in Java
This lesson explains the concept of functional interfaces which were introduced in Java 8.
We'll cover the following...
What are functional interfaces?
An interface that has a single abstract method is called a functional interface.
While ...