作者:爱娟一辈子-_709 | 来源:互联网 | 2023-05-23 12:54
因为我有一个包含重复项的int数组的ArrayList,所以我想使用HashSet.不幸的是,我无法按照自己的意愿使用HashSet:
System.out.print("\nTESTs\n");
ArrayList list = new ArrayList();
list.add(new int[]{1,2,3});
list.add(new int[]{5,1,1});
list.add(new int[]{1,2,3});//duplicate
list.add(new int[]{5,1,3});
Set set = new HashSet(list);
System.out.println("Size of the set = "+set.size());
ArrayList arrayList = new ArrayList(set);
System.out.println("Size of the arrayList = "+arrayList.size());
for (int[] array:arrayList){
System.out.println(Arrays.toString(array));
}
它导致:
Size of the set = 4
Size of the arrayList = 4
[1, 2, 3]
[1, 2, 3] // duplicate still here
[5, 1, 1]
[5, 1, 3]
有谁能告诉我我哪里错了?
在此先感谢Dominique(java新手)
1> Eran..:
数组不会在类中重写hashCode
和equals
实现Object
,因此,HashSet
只有当a1 == a2时,两个数组a1和a2才会被视为彼此相同,在您的情况下为false.
如果使用ArrayList
s而不是数组,则问题将得到解决,因为ArrayList
s相等性由列表成员的相等性(以及它们出现的顺序)决定.