What are functional interfaces used for in Java 8?

前端 未结 10 2115
Happy的楠姐
Happy的楠姐 2020-11-22 09:08

I came across a new term in Java 8: "functional interface". I could only find one use of it while working with lambda expressions.

Java 8 provides

相关标签:
10条回答
  • 2020-11-22 09:59

    @FunctionalInterface annotation is useful for compilation time checking of your code. You cannot have more than one method besides static, default and abstract methods that override methods in Object in your @FunctionalInterface or any other interface used as a functional interface.

    But you can use lambdas without this annotation as well as you can override methods without @Override annotation.

    From docs

    a functional interface has exactly one abstract method. Since default methods have an implementation, they are not abstract. If an interface declares an abstract method overriding one of the public methods of java.lang.Object, that also does not count toward the interface's abstract method count since any implementation of the interface will have an implementation from java.lang.Object or elsewhere

    This can be used in lambda expression:

    public interface Foo {
      public void doSomething();
    }
    

    This cannot be used in lambda expression:

    public interface Foo {
      public void doSomething();
      public void doSomethingElse();
    }
    

    But this will give compilation error:

    @FunctionalInterface
    public interface Foo {
      public void doSomething();
      public void doSomethingElse();
    }
    

    Invalid '@FunctionalInterface' annotation; Foo is not a functional interface

    0 讨论(0)
  • 2020-11-22 10:04

    An interface with only one abstract method is called Functional Interface. It is not mandatory to use @FunctionalInterface, but it’s best practice to use it with functional interfaces to avoid addition of extra methods accidentally. If the interface is annotated with @FunctionalInterface annotation and we try to have more than one abstract method, it throws compiler error.

    package com.akhi;
        @FunctionalInterface
        public interface FucnctionalDemo {
    
          void letsDoSomething();
          //void letsGo();      //invalid because another abstract method does not allow
          public String toString();    // valid because toString from Object 
          public boolean equals(Object o); //valid
    
          public static int sum(int a,int b)   // valid because method static
            {   
                return a+b;
            }
            public default int sub(int a,int b)   //valid because method default
            {
                return a-b;
            }
        }
    
    0 讨论(0)
  • 2020-11-22 10:05

    A lambda expression can be assigned to a functional interface type, but so can method references, and anonymous classes.

    One nice thing about the specific functional interfaces in java.util.function is that they can be composed to create new functions (like Function.andThen and Function.compose, Predicate.and, etc.) due to the handy default methods they contain.

    0 讨论(0)
  • 2020-11-22 10:06

    Beside other answers, I think the main reason to "why using Functional Interface other than directly with lambda expressions" can be related to nature of Java language which is Object Oriented.

    The main attributes of Lambda expressions are: 1. They can be passed around 2. and they can executed in future in specific time (several times). Now to support this feature in languages, some other languages deal simply with this matter.

    For instance in Java Script, a function (Anonymous function, or Function literals) can be addressed as a object. So, you can create them simply and also they can be assigned to a variable and so forth. For example:

    var myFunction = function (...) {
        ...;
    }
    alert(myFunction(...));
    

    or via ES6, you can use an arrow function.

    const myFunction = ... => ...
    

    Up to now, Java language designers have not accepted to handle mentioned features via these manner (functional programming techniques). They believe that Java language is Object Oriented and therefore they should solve this problem via Object Oriented techniques. They don't want to miss simplicity and consistency of Java language.

    Therefore, they use interfaces, as when an object of an interface with just one method (I mean functional interface) is need you can replace it with a lambda expression. Such as:

    ActionListener listener = event -> ...;
    
    0 讨论(0)
提交回复
热议问题