码迷,mamicode.com
首页 > 其他好文 > 详细

Guava HashMultiset(MultiSet)

时间:2018-07-18 10:14:04      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:http   集合   code   技术分享   hash   count   main   string   结果   

multiset:多重集合,和set唯一的不同是 set 集合中一个值只能出现一次,而multiset多重集合中一个值可以出现多次。一个典型的应用就是统计单词出现次数

举例:

public class MultiSetTest {
    public static void main(String[] args) {
        Multiset<String> multiset = HashMultiset.create();
        multiset.add("hello");
        multiset.add("hello");
        multiset.add("hello");
        multiset.add("world");
        multiset.add("world");
        multiset.add("world");
        System.out.println("hello count: "+multiset.count("hello"));
        System.out.println("world count: "+multiset.count("world"));
    }
}

结果:
技术分享图片

Guava HashMultiset(MultiSet)

标签:http   集合   code   技术分享   hash   count   main   string   结果   

原文地址:https://www.cnblogs.com/hts-technology/p/9327384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!