JDK8_函数式接口Function详解


努力努力再努力xLg

[TOC]

函数式接口的定义

  • 函数式接口就是有且只有一个抽象方法的接口,都可以称之为函数式接口。
    • Runnable(),Comparator()都是函数式接口
  • 加了@functionalInterface注解。
  • 如果没有添加该注解,但是满足有且只有一个抽象方法的接口,都会被jdk8认为是函数式接口。
  • 在JDK8 之前,java方法之间的调用都只能传递参数,JDK8之后使用lambda函数式编程, 实现了方法之间传递行为。

Function接口

import java.util.Objects;

java中所有的方法都是只能返回一个结果!!!

/**
 * Represents a function that accepts one argument and produces a result.
 * 接受一个参数并且产生一个参数并且返回
 * <p>This is a <a href="package-summary.html">functional interface</a>
 * whose functional method is {@link #apply(Object)}.
 *
 * @param <T> the type of the input to the functionf
 * @param <R> the type of the result of the function
 *
 * @since 1.8
 */
@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);
    只接受一个参数,然后返回一个参数
    /**
     * Returns a composed function that first applies the {@code before}
     * function to its input, and then applies this function to the result.
     尝试理解一下这句话,返回第一个适用的函数作为稍后调用的方法的输入,然后调用这个方法返回最终结果。
    
     
     * If evaluation of either function throws an exception, it is relayed to
     * the caller of the composed function.
     *
     * @param <V> the type of input to the {@code before} function, and to the
     *           composed function
     * @param before the function to apply before this function is applied
     * @return a composed function that first applies the {@code before}
     * function and then applies this function
     * @throws NullPointerException if before is null
     *
     * @see #andThen(Function)
     */
    default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
        Objects.requireNonNull(before);
        return (V v) -> apply(before.apply(v));
    }

    /**
     * Returns a composed function that first applies this function to
     * its input, and then applies the {@code after} function to the result.
     * If evaluation of either function throws an exception, it is relayed to
     * the caller of the composed function.
     *
     * @param <V> the type of output of the {@code after} function, and of the
     *           composed function
     * @param after the function to apply after this function is applied
     * @return a composed function that first applies this function and then
     * applies the {@code after} function
     * @throws NullPointerException if after is null
     *
     * @see #compose(Function)
     */
    default <V> Function<T, V> andThen(Function<? super R, ? extends V> after) {
        Objects.requireNonNull(after);
        return (T t) -> after.apply(apply(t));
    }

    /**
     * Returns a function that always returns its input argument.
     *
     * @param <T> the type of the input and output objects to the function
     * @return a function that always returns its input argument
     */
    static <T> Function<T, T> identity() {
        return t -> t;
    }
}

在上述源码中,较为难理解的就是compose andThen 两个方法了。

其实这两个方法都是为了使用方便而设计的,这是JDK8给我们提供的函数的复合,这意味着你可以把多个简单的Lambda复合成复杂的表达式。

​ 上述两个方法可以看作JDK为了将Lambda表达式复合起来,特意在Function接口中添加的两个默认方法。他们都会返回一个Function实例。

举例说明

​ 假设一个函数f给数字做加1操作(x -> x + 1),另一个函数g给数字做乘法操作。使用上述两个方法就可以将这两个函数操作复合起来,是代码更加简洁。

compose

Function<Integer,Integer> f = x -> x + 1;
Function<Integer,Integer> g = x -> x * 2;
Function<Integer,Integer> h = f.compose(g);
int result = h.apply(1);

这里得到的答案是3

这是可以看作一个数学的方程解答,使用compose可以看作为数学中的f(g(x))

从源码的JavaDoc中也可以看出,首先调用该方法返回结果之前,将该结果作为参数,计算出最终结果

andThen

Function<Integer,Integer> f = x -> x + 1;
Function<Integer,Integer> g = x -> x * 2;
Function<Integer,Integer> h = f.andThen(g);
int result = h.apply(1);

这里得到的答案是4

相当于数学中的g(f(x))

compose刚好相反。

andThen有然后的意思,即可以理解,先调用函数,得到一个适当的参数,然后用该方法本身,最后返回结果。compose反之。

compose与andThen对比

compose与andThen对比.png

简单理解就是一个调用的先后顺序问题。

研究BiFunction函数是接口

/**
 * Represents a function that accepts two arguments and produces a result.
 * This is the two-arity specialization of {@link Function}.
 *
 * <p>This is a <a href="package-summary.html">functional interface</a>
 * whose functional method is {@link #apply(Object, Object)}.
 *
 * @param <T> the type of the first argument to the function
 * @param <U> the type of the second argument to the function
 * @param <R> the type of the result of the function
 *
 * @see Function
 * @since 1.8
 */
@FunctionalInterface
public interface BiFunction<T, U, R> {

    /**
     * Applies this function to the given arguments.
     *
     * @param t the first function argument
     * @param u the second function argument
     * @return the function result
     */
    R apply(T t, U u);

    /**
     * Returns a composed function that first applies this function to
     * its input, and then applies the {@code after} function to the result.
     * If evaluation of either function throws an exception, it is relayed to
     * the caller of the composed function.
     *
     * @param <V> the type of output of the {@code after} function, and of the
     *           composed function
     * @param after the function to apply after this function is applied
     * @return a composed function that first applies this function and then
     * applies the {@code after} function
     * @throws NullPointerException if after is null
     */
    default <V> BiFunction<T, U, V> andThen(Function<? super R, ? extends V> after) {
        Objects.requireNonNull(after);
        return (T t, U u) -> after.apply(apply(t, u));
    }
}

可以看出该函数式接口的签名为(T,V)->R:接受两个类型参数,返回一个类型参数,相较于Function()接口多了一个输入参数。但是少了一个Compose方法;为什么呢?

为什么BiFunction没有Compose方法

假设如果有的话

    default <V> BiFunction<T,U, V> compose(Function<? super V, ? extends T> before) {
        Objects.requireNonNull(before);
        return (T t,U u) -> befor.apply(apply(t,u));
    }

// Function 中的compose
    default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
        Objects.requireNonNull(before);
        return (V v) -> apply(before.apply(v));
    }

尝试理解BiFunction中的andThen方法

接受的参数是Function,因为java在返回结果中只能返回一个结果,使用andThen在计算完BiFunction中两个元素的运算之后只能返回一个结果并且赋值,如果按照这种逻辑,有compose方法的话,首先计算的是Function函数,并且只能返回一个结果,但是BiFunction中有两个参数需要赋值,所以不能满足该要求,所以不可能存在compose方法

        Function<Integer, Integer> f = x -> x + 1;
        Function<Integer, Integer> g = x -> x * 2;
        Function<Integer, Integer> h = f.andThen(g);
        int result = h.apply(1);
        System.out.println(result);

        BiFunction<Integer, Integer, Integer> ff = (x1, x2) -> x1 + x2 + 1;
        BiFunction<Integer, Integer, Integer> hh = ff.andThen(g);
        Integer apply = hh.apply(1, 2);
        System.out.println(apply);

这里比较难以理解,画个重点。


参考书籍

​ 《java8实战》

本文仅供本人学习,一起进步!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349