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

java8新特性-lambda(类型检查)

时间:2020-06-03 23:21:02      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:总结   java8新特性   lin   inter   nbsp   fun   参数   --   div   

1.表达式类型检查

public class App {

    public static void test(MyInterface<String, List> inter) {
        List<String> list = inter.stratey("hello", new ArrayList());
        System.out.println(list);
    }

    public static void main(String[] args) {
        test(new MyInterface<String, List>() {
            @Override
            public List stratey(String s, List list) {
                list.add(s);
                return list;
            }
        });

        test((x, y) -> {
            y.add(x);
            return y;
        });

        MyInterface<String, List> myInterface = (x, y) -> {
            y.add(x);
            return y;
        };
        System.out.println(myInterface.stratey("hello", new ArrayList()));
    }
}

@FunctionalInterface
interface MyInterface<T, R> {
    R stratey(T t, R r);
}

总结:(x, y) -> {...} -->test(param) --> param = MyInterface --> lambda表达式 --> MyInterface类型,这个就是对于lambda表达式的类型检查,MyInterface接口就是lambda表达式的目标类型(target typing)

2.参数类型检查

总结:(x, y) -> MyInterface.strategy(T t, R r) --> MyInterface<String, List> inter --> T == String R == List --> lambda --> (x, y) == strategy(T t, R r) -->x==T==String y==R==List,这就是lambda表达式的参数类型检查

 

java8新特性-lambda(类型检查)

标签:总结   java8新特性   lin   inter   nbsp   fun   参数   --   div   

原文地址:https://www.cnblogs.com/freeht/p/13040471.html

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