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();//获取值
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM