gpt4 book ai didi

java - 将一个列表存储到另一个列表

转载 作者:行者123 更新时间:2023-12-01 17:27:37 26 4
gpt4 key购买 nike

如果我有以下列表声明:

List< Integer> b = new ArrayList< Integer>();

List< HashSet < Integer>> c = new ArrayList< HashSet< Integer>>();

我想知道如何将 b 添加到 c

我尝试过c.add(b);但这不起作用。

感谢您的帮助!

最佳答案

您无法将整数的 HashSet 添加到整数列表中。它们是两种不同的数据类型。如果您有一个整数的 HashSet 而不是一个整数列表,那么您就可以将它们添加到您的列表中。

像这样:

HashSet< Integer> b = new HashSet< Integer>();
List< HashSet < Integer>> c = new ArrayList< HashSet< Integer>>();
c.add(b);

关于java - 将一个列表存储到另一个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13710033/

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