public static void main(String[] args) {
HashMap hashMap = new HashMap();
hashMap.put("aa", 123);//添加"aa"
hashMap.put("bb", 345);
hashMap.put("cc", 89);
hashMap.put("aa", 890);//修改"aa"
System.out.println(hashMap);
HashMap hashMap1 = new HashMap();
hashMap1.put("AA", 123);
hashMap1.put("BB", 456);
hashMap.putAll(hashMap1);//添加另一个map中全部的元素
System.out.println(hashMap);
//遍历所有的key集
Set set = hashMap.keySet();
Iterator iterator = set.iterator();
while (iterator.hasNext()){
System.out.println(iterator.next());
}
//遍历所有的value集
Collection values = hashMap.values();
Iterator iterator1 = values.iterator();
while (iterator1.hasNext()){
System.out.println(iterator1.next());
}
//遍历所有key-value
Set entrySet = hashMap.entrySet();
Iterator iterator2 = entrySet.iterator();
while (iterator2.hasNext()){
Object obj = iterator2.next();
Map.Entry entry = (Map.Entry) obj;
System.out.println(entry.getKey()+"="+entry.getValue());
}
Object value = hashMap.remove("AA");//不存在返回null
System.out.println(value);
System.out.println(hashMap);
System.out.println(hashMap.get("BB"));//不存在返回null
boolean containsKey = hashMap.containsKey("BB");//判断map中是否存在Key
boolean containsValue = hashMap.containsValue(456);//判断map中是否存在value
System.out.println(containsKey);
System.out.println(containsValue);
hashMap.clear();//将map清空,不是变为null
System.out.println(hashMap.size());
}
JAVA:集合Map(二)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...