Java Functional Interface - Making Java Easy To Learn
Java Functional Interface - Making Java Easy To Learn
Java
Functional Interface has become available for us since the introduction of new features in
Java 8. Needless to say, how important functional Interfaces are in Java. If we start
learning the most popular feature of Java 8 : ‘The Lambda Expression’, we should at least
know the basics of Functional Interfaces. However, you will get more than basics from this
article.
1) Normal Interface
2) Marker Interface
3) Functional Interface
Normal Interface is an interface which has either one or multiple number of abstract
methods.
However, Marker Interface is an interface with no abstract method. (Because till JDK8 an
interface can have only abstract methods, no normal methods). We use it to provide a
type to its sub-classes for executing some logic from other classes.
Additionally, Functional Interface is an interface which has only one abstract method.
Further, it can have any number of static, default methods and even public methods of
java.lang.Object class. In fact, we use it to define Lambda Expressions & Method
References by directly providing logic to an argument of a method.
If you want to learn interfaces in java in detail, kindly visit our separate article on ‘Java
Interface‘, which includes new changes in interfaces after the introduction of Java 8 & Java
9 features.
Consequently, they provide target types for lambda expressions and method references.
Moreover, Java 8 contains some built-in Functional Interfaces designed for commonly
occurring use cases. They are available in a separate package java.util.Function. Hence,
we don’t have to create our own functional interfaces every time for a small use case.
Note that instances of functional interfaces can be created with lambda expressions,
method references, or constructor references.
Note : In addition to single abstract method, we can also have any number of default &
static methods inside a Functional Interface. Moreover, we don’t have any restrictions on
including ‘Object’ class’ public methods inside Functional interfaces. Needless to say, they
are equals(), hashCode(), notify(), notifyAll(), toString(), wait(), getClass() .
Therefore, there is no point of having more than one abstract method in Functional
Interfaces as they are meant for Lambda expressions & Lambda expression could be
assigned to a single abstract method.
https://javatechonline.com/java-functional-interface/ 3/11
9/22/22, 2:27 PM Java Functional Interface | Making Java Easy To Learn
@FunctionalInterface
interface FunctionalInterface1 {
interface NonFunctionalInterface2 {
https://javatechonline.com/java-functional-interface/ 4/11
9/22/22, 2:27 PM Java Functional Interface | Making Java Easy To Learn
@FunctionalInterface
interface A {
@FunctionalInterface
interface B extends A{
In the child interface we are allowed to define exactly same single abstract method as it is
in the parent interface as below.
@FunctionalInterface
interface B extends A {
In other words, the child interface will not have any new abstract methods otherwise child
interface won’t remain a Functional Interface and if we try to use @FunctionalInterface
annotation in child interface, compiler will show an error message. If we don’t use
@FunctionalInterface in child interface & declare new abstract method, the compiler will
consider it as a normal interface & will not show any error as below.
interface B extends A{
https://javatechonline.com/java-functional-interface/ 5/11
9/22/22, 2:27 PM Java Functional Interface | Making Java Easy To Learn
concept of lambda. This is a prerequisite to apply the concept of Lambdas. Now let’s look
at the code below:
interface A {
System.out.println("m1() is executing");
A a= new Demo();
a.m1();
We can write equivalent code to the above code using lambda expression as below:
interface A {
a.m1();
Let’s take another example to convert code using lambda expressions. To illustrate, we will
develop a functionality to calculate sum of two numbers to understand use of Lambda
expressions.
interface Sum {
class Test {
s.sum(24, 14);
interface Sum {
class Test {
https://javatechonline.com/java-functional-interface/ 7/11
9/22/22, 2:27 PM Java Functional Interface | Making Java Easy To Learn
Tagged @functionalinterface in java function interface in java Functional Interface functional interface
in java functional interface in java 8 functional interface in java example functional interface java
functional interface java 8 functional interface java example Functional Interfaces functional interfaces in
java functional interfaces in java 8 functionalinterface Interface with only one method in java8 interfaces
java examples Is it not mandatory to add abstract keyword during method declaration in functional interface as we
generally do in interfaces before JDK 1.8? java 8 functional interface Java 8 Functional Interfaces java custom
functional interface java custom functional interface example Java Functional Interface java functional
interface example java functional interfaces Types of Interfaces in Java use of functional interface in java
what is functional interface in java why functional interface in java
Previous article
Spring Boot MongoDB CRUD Example
Next article
Spring Boot MongoDB @Query Examples
Functional Interface is an interface which has only one abstract method. Further it can
have any number of static, default methods and even methods of java.lang.Object
class
Reply
Reply
https://javatechonline.com/java-functional-interface/ 8/11