java8-Lambda

2017-12-06  本文已影响0人  表象_Dark

1概述

Lambda 表达式的Java 实现:第一个是Lambda的自身,第二个是函数式接口。
Lambda 表现形式可以理解成一个匿名类。

Lambda表达式可以理解为一种匿名函数:它没有名称,但有参数列表、函数主体、返回
类型,可能还有一个可以抛出的异常的列表。
Lambda表达式让你可以简洁地传递代码。
函数式接口就是仅仅声明了一个抽象方法的接口。
只有在接受函数式接口的地方才可以使用Lambda表达式。
Lambda表达式允许你直接内联,为函数式接口的抽象方法提供实现,并且将整个表达式
作为函数式接口的一个实例。

Lambda表达式不是独立执行的,而是构成了一个函数式接口定义的抽象方法的实现,该函数式接口定义了它的目标类型。结果,只有在定义了lambda表达式的目标类型的上下文中,才能使用该表达式。当把一个lambda表达式赋给一个函数式接口的引用时,就创建了这样的上下文。

当目标类型上下文中出现lambda表达式时,就会自动创建实现了函数式接口的一个类的实例(类似于匿名类),函数式接口声明的抽象方法的行为由lambda表达式定义。当通过目标调用该方法时,就会执行lambda表达式。

为了在目标类型上下文中使用lambda表达式,抽象方法的类型和lambda表达式的类型必须兼容。eg:如果抽象方法指定了两个int类型的参数,那么lambda表达式也必须执行两个参数,其类型要么被显示指定为int类型,要么在上下文中可以被隐式的推断为int类型。总的来讲,lambda表达式的参数的类型和数量必须与函数式接口内的抽象方法的参数兼容;返回类型必须兼容;并且lambda表达式可能抛出的异常必须能被该方法接受。

2.其他相关

Lambda表达式是否只是一个匿名内部类的语法?

答案是NO。原因有两点:

匿名类与 lambda表达式的区别:

3. 代码示例

本例以 策略模式 为例:


测试代码包目录结构.png
public class Apple {
    private String color;
    private Integer weight;

    public Apple(String color, Integer weight) {
        this.color = color;
        this.weight = weight;
    }

    public String getColor() {
        return color;
    }

    public Integer getWeight() {
        return weight;
    }

    public void setColor(String color) {
        this.color = color;
    }
}

策略接口

public interface AppleFormatter {

    String accept(Apple apple); // 接收一个 Apple

    default Apple print(Apple apple) {
        apple.setColor("afterChange Color");
        return apple;
    }
}

策略一: 显示重量

public class AppleFancyFormatter implements AppleFormatter {

    @Override
    public String accept(Apple apple) {
        String characteristic = apple.getWeight() > 150 ? "heavy" : "light";
        return "A " + characteristic + " " + apple.getColor() + " apple";
    }
}

策略二:显示颜色

public class AppleSimpleFormatter implements AppleFormatter {

    @Override
    public String accept(Apple apple) {
        return "An apple " + apple.getColor() + " .";
    }
}

策略调用

public class AppleMain {

    public static void main(String[] args) {
        List<Apple> list = Arrays.asList(new Apple("red", 150));

        //策略模式
        prettyPrintApple(list, new AppleSimpleFormatter()); //An apple red .

        //匿名类实现
        prettyPrintApple(list, new AppleSimpleFormatter() {
            public String accept(Apple apple) {
                return "匿名类:An apple " + apple.getWeight() + " .";
            }
        }); // 匿名类:An apple 150 .

        //匿名类重写
        printApple(list, new AppleFormatter() {

            @Override
            public String accept(Apple apple) {
                return null;
            }

            @Override
            public Apple print(Apple apple) {
                apple.setColor(" other print color");
                return apple;
            }
        }); // print :  other print color

        //表达式
        prettyPrintApple(list, (Apple apple) -> "lambda:An a " + apple.getWeight()); // lambda:An a 150


        //表达式重写测试
        printApple(list, (Apple apple) -> {
            apple.setColor("");
            return "";
        });//print : afterChange Color
    }

    /**
     * 打印
     */
    public static void prettyPrintApple(List<Apple> list, AppleFormatter appleFormatter) {
        for (Apple apple : list) {
            String output = appleFormatter.accept(apple);
            System.out.println(output);
        }
    }

    public static void printApple(List<Apple> list, AppleFormatter appleFormatter) {
        for (Apple apple : list) {
            Apple printApple = appleFormatter.print(apple);
            System.out.println("print : " + printApple.getColor());
        }
    }
}

写在后面

1、 该注解只能标记在”有且仅有一个抽象方法”的接口上。
2 、JDK8接口中的静态方法和默认方法,都不算是抽象方法。
3 、接口默认继承Java.lang.Object,所以如果接口显示声明覆盖了Object中方法,那么也不算抽象方法。
4、 该注解不是必须的,如果一个接口符合”函数式接口”定义,那么加不加该注解都没有影响。加上该注解能够更好地让编译器进行检查。如果编写的不是函数式接口,但是加上了@FunctionInterface,那么编译器会报错。

我们可以这样理解:使用Lambda 后 编译器就会认为该类为 FunctionalInterface (虽然此时我们并未使用该注解),由于该类只有一个抽象接口方法,Lambda 就能找到要去实现哪个方法了。


以上为 阅读 java8实践 第一章后的笔记,坐等日后自己前来吐槽。

上一篇下一篇

猜你喜欢

热点阅读