ContainsAll List Java

前端 未结 5 1322
执念已碎
执念已碎 2021-01-07 23:48
     List a = new ArrayList();
     List b = new ArrayList();

     a.add(\"apple\");
     a.add(\"orange\");         


        
5条回答
  •  一生所求
    2021-01-08 00:21

    It's a matter of logic: does A contain all the elements inside B?

    This can be seen as for each element in B, does this element belong to A too?

    You can understand that the condition is true, since B is empty, there is no element to check: for each element in B, so for no element.

提交回复
热议问题