`
fxly0401
  • 浏览: 143710 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

HashMap的遍历

阅读更多
1、新建一个HashMap
Map<Integer , String> notProcInfo = new HashMap<Integer , String>();

2、往HashMap中增添数据
notProcInfo.put(infoId, infoTitle);//infoId为int型,infoTitle为String型

3、遍历HashMap
Iterator<Entry<Integer, String>> iter = notProcInfo.entrySet().iterator();
while(iter.hasNext()){
        Map.Entry<Integer, String> info= iter.next();
        int key = info.getKey();//获取健
        String content = info.getValue();//获取值
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics