在 Java 8 中,可以在 lambda 和流上使用 max 函数来识别数据集中的最大值。但是,当多个元素具有相同的最大值时,max 会任意选择并返回其中一个。
预期行为:
目标是检索所有元素的列表共享最大值的元素,而不仅仅是单个元素
解决方案:
由于 API 缺少此功能的显式方法,因此您可以使用中间存储和集合操作来实现自定义解决方案。这里有两种方法:
1。两遍解决方案(对于集合):
List<String> list = ... ; int longest = list.stream() .mapToInt(String::length) .max() .orElse(-1); List<String> result = list.stream() .filter(s -> s.length() == longest) .collect(toList());
2。单通道解决方案(对于流):
static <T> Collector<T, ?, List<T>> maxList(Comparator<? super T> comp) { // Implementation goes here (provided in the original response) } Stream<String> input = ... ; List<String> result = input.collect(maxList(comparing(String::length)));
此自定义收集器跟踪中间结果并根据每个结果更新其状态元素的值与当前最大值的比较。通过利用这种方法,您可以获得包含流或集合中所有最大值的列表。
以上是如何查找 Java 流中的所有最大值?的详细内容。更多信息请关注PHP中文网其他相关文章!