Stream.anyMatch
定义为:
boolean anyMatch(Predicate<? super T> predicate)
我创建了一个新类,如下所示:
class ClassA {
public boolean anyMethodName(Object o) {
return o instanceof Integer;
}
}
然后我可以运行以下命令:
List<String> durunitList = Arrays.asList("h", "d", "w", "m", "y");
ClassA classA = new ClassA();
System.out.println(durunitList.stream().peek(System.out::println).anyMatch(classA::anyMethodName));
但在我的中ClassA
,我还没有实现Predicate
它的功能方法:
boolean test(T t)
为什么还能classA::anyMethodName
传递给Stream.anyMatch(...)
?
Java 8 增加了接口成为“函数式接口”的功能,只要接口有一个抽象方法即可。如果是,编译器会
classA::anyMethodName
为您创建一个匿名类(假设它具有相同的返回类型/参数),允许您使用该方法(作为 lambda 或方法引用),就像它是该接口的一个实例一样。Predicate
是一个功能接口,因此允许您直接使用您的classA::anyMethodName
方法,就好像它是 的一个实例一样Predicate
。最后,你的代码会被有效地翻译成:
ClassA
永远不会被强制转换Predicate
(因为它不是一个谓词......),而是一个在后台实现简单调用的新匿名类。Predicate
classA.anyMethodName