google Set的几种操作

最近在项目中用到了这个功能,感觉还行,写了一个demo测试了一下. 

        Set s1 = Sets.newHashSet("1", "2", "3", "5");
        Set s2 = Sets.newHashSet("2", "3", "4", "5");
        /**
         * 返回在s1中存在, 但不在s2中存在的
         */
        System.out.println(Sets.difference(s1, s2));

        /**
         * 返回在s2中存在, 但不在s1中存在的
         */
        System.out.println(Sets.difference(s2, s1));

        /**
         * 返回两个集合互斥集合 差集
         */
        System.out.println(Sets.symmetricDifference(s1, s2));

        /**
         * 返回两个集合的交集
         */
        System.out.println(Sets.intersection(s1, s2));

        /**
         * 返回两个集合的并集
         */
        System.out.println(Sets.union(s1, s2));

 

你可能感兴趣的:(google Set的几种操作)