Java中的哪些数据结构可以将哈希图作为其元素?

发布于 2025-01-24 07:44:47 字数 413 浏览 0 评论 0原文

public static HashMap<String,Integer> users1 = new HashMap<>();
public static HashMap<String,Integer> users2 = new HashMap<>();
public static HashMap<String,Integer> users3 = new HashMap<>();
public static HashMap<String,Integer> users4 = new HashMap<>();
// Enter code here.

我需要将它们添加到ArrayList或set或其他内容中,然后在使用该数据结构索引时应调用它们。就像有任何解决方法

public static HashMap<String,Integer> users1 = new HashMap<>();
public static HashMap<String,Integer> users2 = new HashMap<>();
public static HashMap<String,Integer> users3 = new HashMap<>();
public static HashMap<String,Integer> users4 = new HashMap<>();
// Enter code here.

I need to add them into a arrayList or set or something and then they should be called when using that data structures index. Like is there any way to solve it

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

‖放下 2025-01-31 07:44:48

或只是使用一个数组:

public static HashMap<String,Integer>[] users = HashMap<>[4];
users[0] = = new HashMap<>();
users[1] = = new HashMap<>();
users[2] = = new HashMap<>();
users[3] = = new HashMap<>();

然后使用它们:

users[0].add( "String", 123 );

Or just simply use an array:

public static HashMap<String,Integer>[] users = HashMap<>[4];
users[0] = = new HashMap<>();
users[1] = = new HashMap<>();
users[2] = = new HashMap<>();
users[3] = = new HashMap<>();

And then use them:

users[0].add( "String", 123 );
同展鸳鸯锦 2025-01-31 07:44:48

您可以简单地说:

List<HashMap<String, Integer>> list = new ArrayList<>();

// And then add them to list
list.add(users1);
list.add(users2);
...

you could as simply as :

List<HashMap<String, Integer>> list = new ArrayList<>();

// And then add them to list
list.add(users1);
list.add(users2);
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文