Java8:从列表到地图收集最小值,最大值和平均值

编程入门 行业动态 更新时间:2024-10-18 08:31:52
本文介绍了Java8:从列表到地图收集最小值,最大值和平均值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有Integres列表,并希望从列表到地图获取最小值,最大值和平均值.下面是我的代码,

I have List of Integres and want get min, max and avg from list to Map. Below is my code,

List<Integer> numbers = Arrays.asList(-2, 1, 2, 3, 5, 6, 7, 8, 9, 10, 100); int min = numbers.stream().mapToInt(n -> n).min().getAsInt(); int max = numbers.stream().mapToInt(n->n).max().getAsInt(); double avg = numbers.stream().mapToInt(n->n).average().getAsDouble(); Map<String, Number> result = new HashMap<>(); result.put("min", min); result.put("max", max); result.put("avg", avg);

但是我想要在Stream迭代中得到它,

But what I want is to get this in Stream iteration,

numbers.stream().mapToInt(n->n).collect(toMap/* Map with min, max and average*/ ));

有什么办法可以做到这一点?

Is there any way to achieve this ?

推荐答案

您可能想使用IntSummaryStatistics,

IntSummaryStatistics stats = numbers.stream() .mapToInt(n -> n) .summaryStatistics();

然后,您可以在统计信息上使用get方法.您可以使用IntSummaryStatistics

Then you can use get methods on stats. You can get count, min, max, avg, and sum with IntSummaryStatistics

更多推荐

Java8:从列表到地图收集最小值,最大值和平均值

本文发布于:2023-11-30 04:28:23,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1648725.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:最大值   最小值   均值   和平   地图

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!