Java / Interface
What is functional interface in Java 8.
An interface with only one abstract method is known as functional interface. For example, Runnable and Callable interface are functional interface as it has only one method.
A functional interface can have default and static methods while it has only one abstract method.
More Related questions...