gpt4 book ai didi

java - 制作一个 Hashmap,其键是字符串,值是 HashSets

转载 作者:太空宇宙 更新时间:2023-11-04 07:43:07 26 4
gpt4 key购买 nike

尝试使用字符串键和哈希集值创建 HashMap 。我希望哈希集都是整数

Set<String> numbersSet = new HashSet<Integer>();

// won't work:
HashMap<String, numberSet> database = new HashMap<String, numberSet>();//error - "( or [ expected"

//Also won't work. If it did, how can even I add to the set inside this hashMap?
HashMap<String, HashSet<Integer>> database = new HashMap<String, HashSet<Integer>>(); //error-incompatible types

最佳答案

HashMap<String, HashSet<Integer>> database = new HashMap<String, HashSet<Integer>>();

对我有用。

顺便说一句,如果您使用的是 JDK 1.7,您可以使用:

HashMap<String, HashSet<Integer>> mymap = new HashMap<>();

关于java - 制作一个 Hashmap,其键是字符串,值是 HashSets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15733733/

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