热门标签
更多>
搜索结果
查询Tags标签: resSet,共有 2条记录-
【Java】对两个Set取交集,差集,并集
1、取交集(取两个集合中都存在的元素)HashSet<String> setA = new HashSet<>(); HashSet<String> setB = new HashSet<>();//用于存放结果 HashSet<String> resSet = new HashSet<>(); resSet.addAll(setA); resSet.retainAll(setB…
2021/9/29 22:12:57 人评论 次浏览 -
【Java】对两个Set取交集,差集,并集
1、取交集(取两个集合中都存在的元素)HashSet<String> setA = new HashSet<>(); HashSet<String> setB = new HashSet<>();//用于存放结果 HashSet<String> resSet = new HashSet<>(); resSet.addAll(setA); resSet.retainAll(setB…
2021/9/29 22:12:57 人评论 次浏览