List difference in java

前端 未结 11 1780
野的像风
野的像风 2020-11-30 04:33

I have two ArrayList as follows:

original: 12, 16, 17, 19, 101

selected: 16, 19, 107, 108, 109

11条回答
  •  星月不相逢
    2020-11-30 05:01

    Intersection: original.retainAll(selected).

    After that original will contain only elements present in both collections. Returns true if anything changed.

    WARNING: This method is very slow for large collections

提交回复
热议问题