Check if an ArrayList contains every element from another ArrayList (or Collection)

前端 未结 7 1098
甜味超标
甜味超标 2020-11-28 10:12

There is probably a simple one-liner that I am just not finding here, but this is my question:

How do I check if an ArrayList contains all of the objects in another

7条回答
  •  独厮守ぢ
    2020-11-28 10:57

    There is a method called containsAll declared in the java.util.Collection interface. In your setting one.containsAll(two) gives the desired answer.

提交回复
热议问题