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

前端 未结 7 1110
甜味超标
甜味超标 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:55

    Take a look at containsAll(Collection c) method from List interface. I think it is what you are looking for.

提交回复
热议问题