编程语言
首页 > 编程语言> > Java 8 特性-函数式接口详解

Java 8 特性-函数式接口详解

作者:互联网

什么是函数式接口

更多参考:https://www.yuque.com/zhangshuaiyin/java/java-8-function-interface
定义:接口中只有一个抽象方法的接口。
函数式接口一般使用 @FunctionalInterface 注解修饰,目的是检查接口是否符合函数式接口规范。
注意点:

Java 8 内置了 4 个常用的函数式接口

Consumer

接口定义:

@FunctionalInterface
public interface Consumer<T> {

    /**
     * Performs this operation on the given argument.
     *
     * @param t the input argument
     */
    void accept(T t);
}

消费型接口:接收一个参数进行处理,不返回结果。

Supplier

接口定义:

@FunctionalInterface
public interface Supplier<T> {

    /**
     * Gets a result.
     *
     * @return a result
     */
    T get();
}

供给型接口:不接受参数,返回一个泛型类型的对象;

如何使用:使用时提供该接口的实现,并返回一个泛型类型的对象;

Function

接口定义:

@FunctionalInterface
public interface Function<T, R> {

    /**
     * Applies this function to the given argument.
     *
     * @param t the function argument
     * @return the function result
     */
    R apply(T t);
}

函数型接口:提供一个 T 类型的参数,返回一个 R 类型的结果。

Predicate

接口定义:

@FunctionalInterface
public interface Predicate<T> {

    /**
     * Evaluates this predicate on the given argument.
     *
     * @param t the input argument
     * @return {@code true} if the input argument matches the predicate,
     * otherwise {@code false}
     */
    boolean test(T t);
}

断言型接口:输入一个 T 类型的参数,返回 boolean 类型的结果。

更多参考:https://www.yuque.com/zhangshuaiyin/java/java-8-function-interface

标签:function,Java,函数,FunctionalInterface,argument,接口,详解,interface
来源: https://blog.csdn.net/Ep_Little_prince/article/details/117958068