关于 Java 中 HashMap<> 的另一个问题:
我有以下
Map<String, Set<Integer>> myWordDict = new HashMap<String, Set<Integer>>();
将数据存储到变量后myWordDict
,我想遍历 HashMapValues,并将每个值添加到新的 Set 变量中?
当我尝试这样做Set<Integer> newVariable = myWordDict.entrySet()
时,似乎数据类型不兼容。
所以我的问题本质上是:
如何将 HashMap 值或 entrySet() 转换为 Set ?
谢谢