巧用map的computeIfAbsent统计次数
Posted 菠萝科技
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了巧用map的computeIfAbsent统计次数相关的知识,希望对你有一定的参考价值。
1 //map中的key对应的value值为null,则该key对应value值为new AtomicInteger()且自增加1,key已经存在,value值直接自增1
Map<String,AtomicInteger> map=Maps.newHashMap()
list.forEach( str-> map.computeIfAbsent(str, k -> new AtomicInteger()).incrementAndGet());
2 如果不用integer使用long,AtomicLong & LongAdder性能和原理比较
以上是关于巧用map的computeIfAbsent统计次数的主要内容,如果未能解决你的问题,请参考以下文章
Map补充:map遍历方法和computeIfAbsent()方法