?
Map接口:
1、采用鍵值對的形式存儲對象
2、Key不能重復(fù),value可以重復(fù)
3、主要實現(xiàn)類:HashMap?? TreeMap??? Hashtable
?
HashMap:
public class HashMap<K,V> extends AbstractMap<K,V>
implements Map<K,V> ,Cloneable,Serializable
基于哈希表實現(xiàn),允許key、value為 null,除了非同步和允許Null外其他的
和Hashtable相似,此類不保證映射的順序,也不保證順序恒久不變。
代碼示例
package com.collection.map; import java.util.Collection; import java.util.HashMap; import java.util.Map; import java.util.Set; public class MapDemo { public static void main(String[] args) { hashMap(); } public static void hashMap(){ Map<Integer,String> hm = new HashMap<>(); hm.put(1,"AA"); hm.put(2,"BB"); hm.put(3,"CC"); hm.put(4,"DD"); //根據(jù) Entry<K,V> 遍歷 Set<Map.Entry<Integer,String>> entry= hm.entrySet(); for (Map.Entry en:entry){ System.out.println(en.getKey()+":"+en.getValue()); } System.out.println("*************************"); //根據(jù)Keyset遍歷 Set<Integer> keyset=hm.keySet(); for(Integer i:keyset){ System.out.println(i+":"+hm.get(i)); } //根據(jù)valueSet遍歷 System.out.println("*************************"); Collection<String> co= hm.values(); for(String s:co){ System.out.println(s); } System.out.println("*************************"); //JDK1.8新的foreach hm.forEach((k,v)->{System.out.println(k+":"+v);}); } }
?
?
?
?
?
本文摘自 :https://www.cnblogs.com/