HashMap的遍历_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > HashMap的遍历

HashMap的遍历

 2013/11/1 18:13:34  fxly0401  程序员俱乐部  我要评论(0)
  • 摘要:1、新建一个HashMapMap<Integer,String>notProcInfo=newHashMap<Integer,String>();2、往HashMap中增添数据notProcInfo.put(infoId,infoTitle);//infoId为int型,infoTitle为String型3、遍历HashMapIterator<Entry<Integer,String>>iter=notProcInfo.entrySet()
  • 标签:has Map 遍历 Hash
1、新建一个HashMap
class="java" name="code">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();//获取值
}
发表评论
用户名: 匿名