码迷,mamicode.com
首页 > 其他好文 > 详细

map和list循环遍历

时间:2018-11-23 18:32:42      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:val   str   hashmap   use   put   lis   for   string   ring   

 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循环遍历

标签:val   str   hashmap   use   put   lis   for   string   ring   

原文地址:https://www.cnblogs.com/zmmfeng/p/10008835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!