+1 vote
in JAVA by (30.8k points)
What is the difference between a normal and functional interface in Java?

1 Answer

0 votes
by (30.8k points)
The normal interface in Java can contain any number of abstract methods, while the functional interface can only contain just one abstract method.

You might be thinking why they are called functional interfaces? Once you know the answer, it might be a little easier for you to remember the concept.

Related questions

...