0 votes
in JAVA by
What distinguishes a Java functional interface from a conventional interface?

1 Answer

0 votes
by

While the functional interface in Java can only contain one abstract method, the normal interface can include any number of abstract methods. They wrap a function in an interface, which is why they are termed functional interfaces. The one abstract method on the interface serves as the function's representation.

Related questions

0 votes
asked Dec 22, 2021 in Image Classification by rajeshsharma
0 votes
asked Jul 1, 2023 in JAVA by sharadyadav1986
...