haspMap是由Key跟Value组成的
如果要从hashMap里取数据
当你只取Key时,可以这么做
Iterator ite = keySet.iterator();
while(ite.hasNext()){
System.out.println(ite.next());
}
只取Value时,这么做
Collection values = hm.values();
ite = values.iterator();
while(ite.hasNext()){
System.out.println(ite.next());
}
都取出来可以这么做
Set content = hm.entrySet();
ite = content.…
HashMap map = new HashMap();
map.put('key',obj);
这样就保存到HashMap里了。
HashMap 是Key和Value组成的 ,以键值对的形式存在的。