首先看一个例子:
Set operations: union(并集), intersection(交集),asymetric difference(非对称差集), symmetric difference(对称差集), is subset(子集), is superset(超集)
这里很重要的是,一些集合操作会修改原始集合,比如addAll,retainAll,removeAll。尤其是你要重复操作原始集合的时候,一定要新建一个集合,new
TreeSet<T>
(
orginalSet
)。
参考:
http://www.java2s.com/Code/Java/Collections-Data-Structure/Set.htm