IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> java 8 之函数编程BiFunction -> 正文阅读

[移动开发]java 8 之函数编程BiFunction

文章对java 8 BiFunction接口使用及源码做解释,在java 8 后interface 支持方法体,但是需要用default 修饰

  1. 我们先来看下源码
import java.util.Objects;

/**
 * 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));
    }
}

1.@FunctionalInterface 函数接口注解
2. apply 函数参数说明:将此函数应用于给定的参数。
参数:T– 第一个函数参数, U– 第二个函数参数 返回:函数结果,R返回函数执行完结果
3. andThen先来解释下入参:
R是第一个函数执行完的结果参数,V返回参数
该函数先执行R函数运行完结果在执行函数after函数

return (T t, U u) -> after.apply(apply(t, u));
  1. 来个举例:

import java.util.function.BiFunction;
import java.util.function.Function;

/**
 * @author zhaoyy
 * @version 1.0
 * @description TODO
 * @date 2022/4/14
 **/
public class BiFunctionTest {

    public static void main(String[] args) {
        System.out.println("--------------Integer----------------------------");
        Integer r = consumer(2, 3, (x, y) -> x * y);
        System.out.println(r);
        System.out.println("-------------字符串-----------------------------");
        String r1 = consumer(new StringBuffer("sfda"), new StringBuffer("TTT"), (x, y) -> x.append(y).toString());
        System.out.println(r1);
        System.out.println("----------------AndThen--------------------------");
        Integer r2 = consumerAndThen(2, 3, (x, y) -> x * y, y -> y * y);
        System.out.println(r2);
        System.out.println("----------------AndThen-字符串-------------------------");
        String r3 = consumerAndThen("abc", "def", (x, y) -> x + y, y -> y + y);
        System.out.println(r3);
    }

    public static <D, T, R> R consumer(D a, T b, BiFunction<D, T, R> function) {
        return function.apply(a, b);
    }

    public static <D, T, R, V> V consumerAndThen(D a, T b, BiFunction<D, T, R> function, Function<R, V> after) {
        return function.andThen(after).apply(a, b);
    }
}

输出结果:

--------------Integer----------------------------
6
-------------字符串-----------------------------
sfdaTTT
----------------AndThen--------------------------
36
----------------AndThen-字符串-------------------------
abcdefabcdef

输出解释:
第一次输出:x *y =2 * 3=6 输出结果:6
第二次输出:使用字符串,x+y=afds+TTT=afdsTTT 输出结果:afdsTTT
第三次输出:使用方法 addThen , x * y=R ,R * R =V 输出结果:36 。计算步骤(2 * 3=6, 6 * 6=36)
第四次输出:同第三输出步骤一样,结果输出abcdefabcdef

备注:方便扩展使用,举例使用乏类模式出入参数,你也可以使用具体参数类型测试

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-04-18 17:54:07  更:2022-04-18 17:57:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 22:12:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码