本帖最后由 张向辉 于 2013-1-26 11:39 编辑
public class ThreadDemo3 {
/**
* @param args
*/
public static void main(String[] args) {
Map map = new HashMap();
map.put("Jack", 19);
map.put("Rose", 19);
Set keyset = map.keySet();
Iterator it = keyset.iterator();
while (it.hasNext()) {
Object key =it.next(); //这句是什么意思?求哪位大神给解释下啊
Object value = map.get(key);
System.out.println(key+""+value);
}
}
}
Object key =it.next(); //这句是什么意思?求哪位大神给解释下啊
|