The concept of a
functional interface is a cornerstone of lambda expression support, introduced in Java SE 8. A functional interface is an interface that is intended to have exactly one abstract method.
This single abstract method serves as the target for lambda expressions and method references. In essence, a functional interface becomes a blueprint for creating instances that implement this single method, allowing succinct code that focuses on the method's logic. For example:
- An interface
Compute
with a single method int calculate(int a, int b)
can be implemented on-the-fly with a lambda like (a, b) -> a + b
, making it straightforward to pass around behavior as if it were data.
While a functional interface may contain other methods, such as default or static methods, the key is that there is only one abstract method that defines the functional aspect of the interface. The
@FunctionalInterface
annotation, while not required, is a helpful way to indicate the purpose of the interface and enables compile-time checking to ensure its contract isn't accidentally broken by adding additional abstract methods.