如何得到HashMap里面的所有数据
答案:1 悬赏:0 手机版
解决时间 2021-01-28 06:24
- 提问者网友:浮克旳回音
- 2021-01-27 09:52
如何得到HashMap里面的所有数据
最佳答案
- 五星知识达人网友:不如潦草
- 2021-01-27 10:25
因为,HashMap是Collection的子类,当然应该用iterator来遍历了.
HashMap map=new HashMap();
map.put("xx","xxxx");
......
......
Iterator it=map.keySet().iterator();
while (it.hasNext())
{
Object obj=map.get(it.next());
System.out.println(obj);
}
HashMap map=new HashMap();
map.put("xx","xxxx");
......
......
Iterator it=map.keySet().iterator();
while (it.hasNext())
{
Object obj=map.get(it.next());
System.out.println(obj);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯