黑马程序员技术交流社区
标题:
hashmap的迭代
[打印本页]
作者:
xgm
时间:
2016-3-18 00:39
标题:
hashmap的迭代
/**
* HashMap的迭代
* @author Administrator
*
*/
public class EntryTest {
public static void main(String[] args) {
Map<Integer,String> maps = new HashMap<Integer,String>();
maps.put(1, "aa");
maps.put(2, "bb");
maps.put(3, "cc");
maps.put(4, "dd");
Set<Map.Entry<Integer,String>> set = maps.entrySet();
for(Map.Entry<Integer, String> entry:set){
System.out.println(entry.getKey()+"===="+entry.getValue());
}
Set<Integer> set1= maps.keySet();
for(Integer i:set1){
System.out.println(maps.get(i));
}
}
}
复制代码
作者:
就是我
时间:
2016-3-18 11:16
这绝对是水贴
作者:
ameanboy
时间:
2016-3-18 12:03
Map迭代的第二种方式,遍历Map.Entry类,但是哪种更快呢,求大神解答
作者:
zx7660
时间:
2016-3-18 12:43
不错....
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2