美文网首页
java8的函数式接口(Functional Interface

java8的函数式接口(Functional Interface

作者: 天冷请穿衣 | 来源:发表于2019-11-22 10:32 被阅读0次

2019-11-22

@FunctionalInterface

An informative annotation type used to indicate that an interface type
declaration is intended to be a functional interface as defined by the Java Language Specification.
Conceptually, 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.
Note that instances of functional interfaces can be created with lambda expressions, method references, or constructor references.
If a type is annotated with this annotation type, compilers are required to generate an error message unless:
The type is an interface type and not an annotation type, enum, or class.
The annotated type satisfies the requirements of a functional interface.
However, the compiler will treat any interface meeting the definition of a functional interface as a functional interface regardless of whether or not a FunctionalInterface annotation is present on the interface declaration.

简单总结就是函数式接口(Functional Interface)就是只含有一个抽象方法的接口,而这个抽象方法不包括具有default的方法和Object的方法的抽象。因为它们都有一个实现。
函数式接口的实例可以由Lambda表达式、方法引用、构造器引用来创建。
eg:

@FunctionalInterface
public interface FunctionalInterfaceTest {

    String parseName(String name) ;
//具有default的抽象方法不算在函数式接口的抽象方法里
    default String see(){
        return "you're beautiful ";
    }
//Object的方法的抽象不算在函数式接口的抽象方法里
    String toString();
}

相关文章

  • Java lambda表达式

    1. Java函数式接口 Java实现函数式编程的方式是函数式接口(functional interface),函...

  • Java 8 知多少

    一、函数式接口 函数式接口的定义: 函数式接口(Functional Interface)就是一个有且仅有一个抽象...

  • 函数式接口

    一、函数式接口基础 A functional interface has exactly one abstract...

  • java学习:java8新特性之一,函数式接口

    函数式接口(Functional Interface)就是一个具有一个方法的普通接口。 函数式接口可以被隐式转换为...

  • Java8-lambda表达式.md

    Lambda 表达式详解 函数式编程 函数式接口(functional interface 也叫功能性接口,其实是...

  • 函数式接口

    函数式接口 声明:java8新特性系列为个人学习笔记,参考地址点击这里,侵删!! 函数式接口(Functional...

  • java8的函数式接口(Functional Interface

    2019-11-22 @FunctionalInterfaceAn informative annotation ...

  • kotlin lambda表达式

    先来看一个概念。 函数式接口:函数式接口(Functional Interface)就是一个有且仅有一个抽象方法,...

  • Lambda表达式

    Lambda表达式是Java8的一个新特性,是函数式接口的一种体现。所谓函数式接口(functional inte...

  • java8新特性之函数式接口

    函数式接口(Functional Interface): 首先这一定先是个接口,在这个接口中有且只有一个抽象方法,...

网友评论

      本文标题:java8的函数式接口(Functional Interface

      本文链接:https://www.haomeiwen.com/subject/ojsfwctx.html