JDK8新特性--常用函数接口--常用的函数式接口_Consumer接口二(andThen)

package com.itheima.demo05.Consumer;

import java.util.function.Consumer;

/*
Consumer接口的默认方法andThen
作用:需要两个Consumer接口,可以把两个Consumer接口组合到一起,在对数据进行消费

例如:

Consumer con1
Consumer con2
String s = "hello";
con1.accept(s);
con2.accept(s);
连接两个Consumer接口  再进行消费
con1.andThen(con2).accept(s); 谁写前边谁先消费

*/
public class Demo02AndThen {

//定义一个方法,方法的参数传递一个字符串和两个Consumer接口,Consumer接口的泛型使用字符串
public static void method(String s, Consumer con1 ,Consumer con2){
    //con1.accept(s);
    //con2.accept(s);
    //使用andThen方法,把两个Consumer接口连接到一起,在消费数据
    con1.andThen(con2).accept(s);//con1连接con2,先执行con1消费数据,在执行con2消费数据
}

public static void main(String[] args) {
    //调用method方法,传递一个字符串,两个Lambda表达式
    method("Hello",
            (t)->{
                //消费方式:把字符串转换为大写输出
                System.out.println(t.toUpperCase());
            },
            (t)->{
                //消费方式:把字符串转换为小写输出
                System.out.println(t.toLowerCase());
            });
}

}

你可能感兴趣的:(java)