vlambda博客
学习文章列表

JDK8(一)函数式接口的定义

JDK8-1 函数式接口的定义

JDK8 历史渊源

这是第一篇写 JDK8 的内容,先聊聊 JDK8 的历史渊源吧。2014 年 3 月 18 日,JDK8 的第一个正式版发布了,时间上虽比原定的 2013 年 9 月稍晚了一些,但是功能上还是值得肯定的,主要包括:

  • JEP 126:对 Lambda 表达式的支持,让 Java 语言拥有了函数式表达的能力。

  • JEP 104:内置 Nashorn JavaScript 引擎的支持。

  • JEP 150:新的时间、日期 API。

  • JEP 122:彻底移除了 HotSpot 的永久代。

    ...

JEP 文档

令人遗憾的是头号天坑 Jigsaw 在 JDK8 中还是未能得到提供,模块化的需求又被延期至 JDK9。

进入正题,第一篇:函数式接口的定义:

函数式接口概览

函数式接口位于 java.util.function 包下,如下图:

打开这些类的源代码,不难发现,每个类上面都打了一个相同的注解java.lang.annotation.@FunctionalInterface

FunctionalInterface 注解

Java doc 描述

/**
 * An informative annotation type used to indicate that an interface
 * type declaration is intended to be a <i>functional interface</i> as
 * defined by the Java Language Specification.
 * 这段是对注解的一个描述:
 * 定义在Java语言规范中,这个注解用来表明一个接口类型被定义为“函数式接口”。
 *
 * Conceptually, a functional interface has exactly one abstract
 * method.  Since {@linkplain java.lang.reflect.Method#isDefault()
 * default methods} have an implementation, they are not abstract.  If
 * an interface declares an abstract method overriding one of the
 * public methods of {@code java.lang.Object}, that also does
 * <em>not</em> count toward the interface's abstract method count
 * since any implementation of the interface will have an
 * implementation from {@code java.lang.Object} or elsewhere.
 *
 * 这段是函数式接口注解的约束要求:
 * 1.一个函数式接口中只能有一个抽象方法。
 * 2.因为默认方法有实现,所以不算做抽象方法。
 * 3.如果接口中定义的抽象方法是重写java.lang.Object的public方法,这个方法仍然不算一个抽象方法,因为所有接口的实现都是java.lang.Object的实现。
 *
 * <p>Note that instances of functional interfaces can be created with
 * lambda expressions, method references, or constructor references.
 * 这段描述如何创建一个函数式接口的实例,三种方式:
 * 1. lambda表达式
 * 2. 方法引用
 * 3. 构造方法引用
 *
 * <p>If a type is annotated with this annotation type, compilers are
 * required to generate an error message unless:
 * 如果一个接口被标注为函数式接口“@FunctionalInterface”,编译器将检查:
 * <ul>
 * <li> The type is an interface type and not an annotation type, enum, or class.
 * 1.必须式接口类型
 * <li> The annotated type satisfies the requirements of a functional interface.
 * 2.接口满足上面函数式接口的要求
 * </ul>
 *
 * <p>However, the compiler will treat any interface meeting the
 * definition of a functional interface as a functional interface
 * regardless of whether or not a {@code FunctionalInterface}
 * annotation is present on the interface declaration.
 * 无论接口上是否存在“@FunctionalInterface”,如果接口满足函数式接口的要求,接口都将被视为函数式接口。
 * @jls 4.3.2. The Class Object
 * @jls 9.8 Functional Interfaces
 * @jls 9.4.3 Interface Method Body
 * @since 1.8
 */

总结@FunctionalInterface:

  1. 函数式接口的要求:
  • 一个函数式接口中只能有一个抽象方法
  • 新增的“默认方法”不算抽象方法,“静态方法”也不算抽象方法,因为他俩都有实现
  • 如果接口中定义的抽象方法是重写 java.lang.Object 的 public 方法,这个方法仍然不算一个抽象方法,因为所有接口的实现都是 java.lang.Object 的实现。
  1. 函数式接口的实例创建方法:
  • lambda 表达式
  • 方法引用
  • 构造方法引用
  1. 编译器对函数式接口的要求及判断:
  • 无论接口上是否存在“@FunctionalInterface”,只要接口满足函数式接口的要求,接口都将被视为函数式接口
  • 如果接口上标注了“@FunctionalInterface”,编译器将按照函数式接口的规范检查该接口。

这里第二句比较好理解,如果接口上标注了“@FunctionalInterface”,编译器按照函数式接口的规范检查接口定义。

第一句:无论接口上是否存在“@FunctionalInterface”,只要接口满足函数式接口的要求,接口都将被视为函数式接口,这句话的意思是:如果一个接口满足函数式接口上面的 3 点要求,就算没有标注“@FunctionalInterface”注解,编译器依然会认为这个接口是一个函数式接口,可以用创建函数式接口实例的方法去创建这个接口的实例。

看完三件事JDK8(一)函数式接口的定义

如果你觉得这篇内容对你还蛮有帮助,我想邀请你帮我三个小忙JDK8(一)函数式接口的定义JDK8(一)函数式接口的定义

  1. 点赞,转发,你们的 『点赞和转发』,才是我创造的动力。

  2. 同时可以期待后续文章ing🚀