+1 vote
in JAVA by
What is the difference between a normal and functional interface in Java?

1 Answer

0 votes
by
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.
...