Scala HashMap遍历的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala HashMap遍历的方法相关的知识,希望对你有一定的参考价值。

求代码

参考技术A Map遍历:(三种方法)
Collection<Student> c = map.values();
Iterator<Student>
it = c.iterator();
while
(it.hasNext())
Student
s = it.next();


Set<String> set = map.keySet();
Iterator<String>
it1 = set.iterator();
while
(it1.hasNext())
System.out.println(map.get(it1.next()).getAge());


Set<Map.Entry<String, Student>> entry = map.entrySet();
Iterator<Entry<String,
Student>> it2 = entry.iterator();
while
(it2.hasNext())
Entry<String,
Student> en = it2.next();
String
key = en.getKey();
Student
s = en.getValue(); 追问

谢了,但我要的是Scala的

以上是关于Scala HashMap遍历的方法的主要内容,如果未能解决你的问题,请参考以下文章

在 Java(或 Scala)中迭代 HashMap 的 HashMap

Scala:使用具有默认值的 HashMap

HashMap遍历

HashMap的遍历

HashMap遍历方法总结

在 JavaScript 中循环遍历“Hashmap”