美文网首页
@FunctionalInterface

@FunctionalInterface

作者: 好学人 | 来源:发表于2019-12-09 10:17 被阅读0次

    注解定义

    @Documented
    @Retention(value=RUNTIME)
    @Target(value=TYPE)
    public @interface 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:

    1. The type is an interface type and not an annotation type, enum, or class.

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

    相关文章

      网友评论

          本文标题:@FunctionalInterface

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