函数式接口
有且只有一个抽象方法的接口被称为函数式接口,函数式接口适用于函数式编程的场景,Lambda就是Java中函数式编程的体现,可以使用Lambda表达式创建一个函数式接口的对象,一定要确保接口中有且只有一个抽象方法,这样Lambda才能顺利的进行推导。
常见的函数式接口
Consumer<T>:消费型接口
抽象的方法:void accept(T t),接收一个参数进行消费,但无需返回结果。
使用方法:
Consumer consumer = System.out::println;
consumer.accept("hello function");
Supplier<T>: 供给型接口
抽象方法:T get(),无参数,有返回值。
使用方式:
Supplier<String> supplier = () -> "我要变的很有钱";
System.out.println(supplier.get());
Function<T,R>: 函数型接口
抽象方法: R apply(T t),传入一个参数,返回想要的结果。
使用方式:
Function<Integer, Integer> function1 = e -> e * 6;
System.out.println(function1.apply(2));
Predicate<T> : 断言型接口
抽象方法: boolean test(T t),传入一个参数,返回一个布尔值。
使用方式:
Predicate<Integer> predicate = t -> t > 0;
boolean test = predicate.test(1);
System.out.println(test);