码迷,mamicode.com
首页 > 编程语言 > 详细

java8新特性之方法引用和构造器引用

时间:2020-08-03 00:53:33      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:get   oid   静态   特性   函数   java   格式   als   注意   

 

 

@RunWith(SpringRunner.class)
@SpringBootTest
public class TestMethod {

    /**
     * 一,方法引用:若Lambda体中的内容有方法已经实现了,我们可以使用“方法引用”
     * (可以理解为方法引用是Lambda表达式的另一种表现形式)
     * 主要有三种语法格式:
     * 对象::实例方法名
     *
     * 类::静态方法名
     *
     * 类::实例方法名
     *
     * 二,构造器引用
     * ClassName::new
     * 注意:需要调用的构造器的参数列表与函数式接口中抽象方法的参数列表保持一致!
     *
     * 三,数组引用
     * Type::new;
     *
     */

    //对象::实例名
    @Test
    public void test1() {
        PrintStream ps1 = System.out;
        Consumer<String> con = (x) -> ps1.println(x);

        PrintStream ps = System.out;
        Consumer<String> con1 = ps::println;

        Consumer<String> con2 = System.out::println;
        con2.accept("abcedf");
    }

    //类::静态方法名
    @Test
    public void test2() {
        Comparator<Integer> com = (x,y) -> Integer.compare(x,y);
        Comparator<Integer> com1 = Integer::compare;
    }

    //类:: 实例方法名
    @Test
    public void test3() {
        BiPredicate<String,String> bp = (x,y) -> x.equals(y);
        BiPredicate<String,String> bp2 = String::equals;
    }

    //构造器引用方式
    @Test
    public void test4() {
        Supplier<Employee> sup = () -> new Employee();

        //构造器引用方式
        Supplier<Employee> sup2 = Employee::new;
        Employee emp = sup2.get();
        System.out.println(emp);

    }

    @Test
    public void test5() {
        Function<Integer,Employee> fun = (x) -> new Employee(x);
        //构造器引用方式
        Function<Integer,Employee> fun2 = Employee::new;
        Employee emp = fun2.apply(101);
        System.out.println(emp);
    }

    //数组引用
    @Test
    public void test6() {
        Function<Integer,String[]> fun = (x) -> new String[x];
        String[] strs = fun.apply(10);
        System.out.println(strs.length);

        Function<Integer,String[]> fun2 = String[]::new;

        String[] strs2 = fun.apply(20);
        System.out.println(strs2.length);

    }

}

 

java8新特性之方法引用和构造器引用

标签:get   oid   静态   特性   函数   java   格式   als   注意   

原文地址:https://www.cnblogs.com/liuyi13535496566/p/13424044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!