gpt4 book ai didi

Java :Is Set not allowed duplicates even within List object?

转载 作者:行者123 更新时间:2023-12-01 07:57:59 24 4
gpt4 key购买 nike

我有一个以下问题:我有两个列表,并且我在 Set 中添加了两个列表,但它不允许重复的对象。Set 是否也检查对象内的重复项?

public static void main(String[] args) 
{


Set<List<String>> set = new HashSet<>();

List<String> list = new ArrayList<String>();
list.add("Hariom");
set.add(list);
List<String> list1 = new ArrayList<String>();
list1.add("Hariom");
set.add(list1);

System.out.println(set.size());
}

Printing 1

Set 工作正常吗,即使在对象内部也会检查重复项吗?

最佳答案

当您向 HashSet 添加新元素时,该元素的 hashCodeequals 用于确定 Set 中是否已存在相同的元素。因此,如果两个列表相等,则只能将一个添加到 HashSet 中。

如果两个列表具有相同数量的元素,并且在迭代这两个列表时,每对元素都相等,则认为它们相等。因此你的两个列表是相等的。

关于Java :Is Set not allowed duplicates even within List object?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27676784/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com