map和list循环遍历
Posted zmmfeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map和list循环遍历相关的知识,希望对你有一定的参考价值。
1 //map遍历(zmm是实体类) 2 3 Map<String, zmm> maps = new HashMap<String, zmm>(); 4 5 //给map存值; 6 7 maps.put(username, zmm); 8 9 //把maps集合循环遍历 10 for (String key : maps.keySet()) { 11 12 //用key值取出value; 13 14 zmm zmms= maps.get(key); 15 16 } 17 18 19 20 //list遍历(zmm是实体类) 21 22 List<zmm> lists = new ArrayList<zmm>(); 23 24 //给你list存值 25 26 lists.add(zmm); 27 28 for (zmm zmms : list) { 29 30 } 31
以上是关于map和list循环遍历的主要内容,如果未能解决你的问题,请参考以下文章
总结for循环及for循环增强遍历数组,list,set和map
Play Framework常用标签list,set,如何遍历list、map类型数据