list的取差集

工作中用到了list的取差集,发现还是挺好用的。

所以记录下。

需求list的方法说明备注

交集listA.retainAll(listB);  listA内容变为listA和listB都存在的对象        listB不变

差集listA.removeAll(listB);  listA中存在的listB的内容去重           listB不变

并集listA.removeAll(listB);

listA.addAll(listB);

为了去重,listA先取差集,然后追加全部的listBlistB不变


引用链接:https://www.cnblogs.com/changfanchangle/p/8966860.html

你可能感兴趣的:(list的取差集)