厚德博学 敬业乐群
@sky
全部博文(252)
2015年(2)
2014年(1)
2013年(1)
2012年(16)
2011年(42)
2010年(67)
2009年(87)
2008年(36)
25742040
shijiulo
niuxlinu
ebayboy
hayand66
大鬼不动
acer1025
醉鬼的故
小雅贝贝
XINGCHEN
wzy_yzw
十的9次
zds05
bjywxc
zlhc1
smile124
cynthia
格伯纳
分类:
2009-12-08 14:29:29
package com; import java.util.Collections; import java.util.List; import java.util.ArrayList; import java.util.Iterator; import java.util.HashMap; import java.util.Map; import java.util.Set; import java.util.Map.Entry; class Temp { public int count; public Temp() { this.count = 123; } public void setCount(int count) { this.count = count; } public int getCount() { return this.count; } } public class Test { public static void main(String args[]) throws Exception { HashMap<String, Temp> hashmap = new HashMap<String, Temp>(); Temp t = new Temp(); hashmap.put("fan", t); Set<Map.Entry<String, Temp>> set = hashmap.entrySet(); Iterator<Map.Entry<String, Temp>> iterator = set.iterator(); while (iterator.hasNext()) { Entry<String, Temp> entry = iterator.next(); String key = entry.getKey(); Temp tt = entry.getValue(); System.out.println("key: " + key + " value = " + tt.getCount()); } hashmap.clear(); } }
上一篇:hashmap遍历
下一篇:gettimeofday/settimeofday
登录 注册