有可能,我只是沒有在這裏找到一個簡單的一行,但這是我的問題:ArrayList包含另一個ArrayList的
如何檢查是否一個ArrayList包含了所有在其他ArrayList中的對象。我期待(如果存在)中的線沿線的東西:
//INCORRECT EXAMPLE:
if(one.contains(two))
{
return true;
}
else
{
return false;
}
例如:
ArrayList one = {1, 2, 3, 4, 5}
ArrayList two = {1, 2, 3} --> True
ArrayList two = {} --> True
ArrayList two = {1, 2, 3, 4, 5} --> True
ArrayList two = {1, 5, 2} --> True
ArrayList two = {1, 7, 4} --> False
ArrayList two = {0, 1, 3} --> False
ArrayList two = {4, 5, 6} --> False
ArrayList two = {7, 8, 9} --> False
{1,3,2} =真或假? – cowls
爲真。在這種情況下,謝謝你的錯誤更新 – Evorlor
你想containsAll(已經是答案) – cowls