Java 8

functional interface in Java
Java 8

Functional Interface in Java

A Functional Interface is an interface that contains only one abstract method. You can create your own functional interface using @FunctionalInterface annotation as well.

Scroll to Top