gpt4 book ai didi

java - Java Stream::*Match 操作的通用声明

转载 作者:行者123 更新时间:2023-11-29 03:03:07 25 4
gpt4 key购买 nike

我想创建一个通用的test() 函数来演示Stream 操作allMatchanyMatchnoneMatch。它可能看起来像这样(无法编译):

import java.util.stream.*;
import java.util.function.*;

public class Tester {
void test(Function<Predicate<Integer>, Boolean> matcher, int val) {
System.out.println(
Stream.of(1,2,3,4,5).matcher(n -> n < val));
}
public static void main(String[] args) {
test(Stream::allMatch, 10);
test(Stream::allMatch, 4);
test(Stream::anyMatch, 2);
test(Stream::anyMatch, 0);
test(Stream::noneMatch, 0);
test(Stream::noneMatch, 5);
}
}

(我认为)我的挑战是定义 matcher,它可能需要是通用的,而不是我在这里做的方式。我也不确定是否可以在 main() 中进行我在此处显示的调用。

我什至不确定这是否可以完成,所以我很感激任何见解。

最佳答案

以下作品:

static void test(
BiPredicate<Stream<Integer>, Predicate<Integer>> bipredicate, int val) {
System.out.println(bipredicate.test(
IntStream.rangeClosed(1, 5).boxed(), n -> n < val));
}

public static void main(String[] args) {
test(Stream::allMatch, 10);
test(Stream::allMatch, 4);
test(Stream::anyMatch, 2);
test(Stream::anyMatch, 0);
test(Stream::noneMatch, 0);
test(Stream::noneMatch, 5);
}

...但如果重点是演示这些东西的作用,你最好还是写得更直接

System.out.println(IntStream.rangeClosed(1, 5).allMatch(n -> n < 10));

..等等,这更容易阅读。

关于java - Java Stream::*Match 操作的通用声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33681999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com