今日总结
- 函数式接口
- Stream流
1 函数式接口
概念
有且仅有一个抽象方法的接口
如何检测一个接口是不是函数式接口
@FunctionalInterface
放在接口定义的上方:如果接口是函数式接口,编译通过;如果不是,编译失败
注意事项
我们自己定义函数式接口的时候,@FunctionalInterface是可选的,就算我不写这个注解,只要保证满足函数式接口定义的条件,也照样是函数式接口。但是,建议加上该注解
1.1 常用函数式接口之Supplier
Supplier接口
Supplier
接口也被称为生产型接口,如果我们指定了接口的泛型是什么类型,那么接口中的get方法就会生产什么类型的数据供我们使用。 常用方法
只有一个无参的方法
方法名 说明 T get() 按照某种实现逻辑(由Lambda表达式实现)返回一个数据 代码演示
public class SupplierDemo { public static void main(String[] args) { String s = getString(() -> "林青霞"); System.out.println(s); Integer i = getInteger(() -> 30); System.out.println(i); } //定义一个方法,返回一个整数数据 private static Integer getInteger(Supplier<Integer> sup) { return sup.get(); } //定义一个方法,返回一个字符串数据 private static String getString(Supplier<String> sup) { return sup.get(); } }