0 votes
in JAVA by (30.8k points)
What is functional interface in java?

1 Answer

0 votes
by (19.8k points)

What is functional interface in java?

A functional interface in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method.

Related questions

...