+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.

Related questions

0 votes
asked Oct 11, 2020 in JAVA by SakshiSharma
+1 vote
asked Jun 16, 2019 in JAVA by reins.robin
...