java hashmap 值求和
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java hashmap 值求和相关的知识,希望对你有一定的参考价值。
参考技术A 你说的是这个Map<String,Integer> map = new HashMap<>();
map.put("key1", 1);map.put("key2", 2);map.put("key3", 3);
int count = map.entrySet().stream().mapToInt(t->t.getValue()).sum();
System.out.println(count);
以上是关于java hashmap 值求和的主要内容,如果未能解决你的问题,请参考以下文章
Java - 更新 HashMap 值的最佳方式 - 传递值/引用相关