在具有整数数组的数组列表上使用包含
我有一个 ,我向它添加一个数组。ArrayList<int[]>
ArrayList<int[]> j = new ArrayList<int[]>();
int[] w = {1,2};
j.add(w);
假设我想知道是否包含一个数组,其中有不使用,因为我将从另一个类调用它。因此,我创建了一个新的数组,其中包含...j
{1,2}
w
{1,2}
int[] t = {1,2};
return j.contains(t);
...但是,即使已添加到列表中,这将返回 false,并且包含与 完全相同的数组。w
w
t
有没有办法使用包含,这样我就可以检查一下,看看 其中一个元素是否具有数组值?ArrayList
{1,2}