此表达式的目标类型必须是功能接口
2022-09-03 15:31:18
我创建了一个函数来过滤多个谓词,我为它们执行逻辑AND:
@SafeVarargs
public static <T> Stream<T> filter(Stream<T> source, Predicate<T>... predicates) {
return source.filter(Arrays.stream(predicates).reduce(predicates[0], Predicate::and));
}
呼叫时:
filter(IntStream.range(0, 10).boxed(), x -> x % 2 != 0, x -> x%3 == 0).forEach(System.out::println);
它工作正常,并打印3和9。但是,当我传递单个谓词时,例如:
filter(IntStream.range(0, 10).boxed(), x -> x % 2 != 0).forEach(System.out::println);
我收到编译错误:
The target type of this expression must be a functional interface
这是为什么呢?
对于信息,我使用Eclipse Luna版本1。