map集合的遍历
Posted wtbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map集合的遍历相关的知识,希望对你有一定的参考价值。
public class Demo12 {
public static void main(String[] args){
HashMap<String, String> map = new HashMap<>();
map.put("杨过","小龙女");
map.put("五阿哥","小燕子");
//遍历
//获取所有的键
Set<String> key = map.keySet();
//遍历键的集合,获取到每一个键
for (String x:key){
//根据键找值
String value = map.get(x);
System.out.println(x+"-----"+value);
}
}
}
以上是关于map集合的遍历的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin集合操作 ⑤ ( Map 集合 | 获取 Map 值 | Map 遍历 | 可变 Map 集合 )