博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
遍历Map的三种方法
阅读量:5077 次
发布时间:2019-06-12

本文共 864 字,大约阅读时间需要 2 分钟。

Map
map = new HashMap<>(); map.put("1",1); map.put("2",2); map.put("3",3); // 第一种遍历,根据keySet()方法 System.out.println("第一种遍历方法:"); for(String key : map.keySet()) {
Object obj = map.get(key); System.out.println(obj); } // 第二种遍历,利用迭代器map.entrySet().iterator() System.out.println("第二种遍历方法:"); Iterator
> entryIterator = map.entrySet().iterator(); while (entryIterator.hasNext()) {
Map.Entry
entry = entryIterator.next(); System.out.println("entry.getKey():" + entry.getKey()); System.out.println("entry.getValue()" + entry.getValue()); } // 第三种遍历方法,推荐,简便且合适大容量数值 System.out.println("第三种遍历方法:"); for(Map.Entry
entry : map.entrySet()) {
System.out.println("entry.getkey():" + entry.getValue()); }

转载于:https://www.cnblogs.com/xiaoyu666/p/9719862.html

你可能感兴趣的文章
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
网卡流量检测.py
查看>>
poj1981 Circle and Points 单位圆覆盖问题
查看>>
POP的Stroke动画
查看>>
SQL语句在查询分析器中可以执行,代码中不能执行
查看>>
yii 1.x 添加 rules 验证url数组
查看>>
html+css 布局篇
查看>>
SQL优化
查看>>
用C语言操纵Mysql
查看>>
轻松学MVC4.0–6 MVC的执行流程
查看>>
redis集群如何清理前缀相同的key
查看>>
Python 集合(Set)、字典(Dictionary)
查看>>
获取元素
查看>>
proxy写监听方法,实现响应式
查看>>
第一阶段冲刺06
查看>>
十个免费的 Web 压力测试工具
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
mysql重置密码
查看>>