java Map之 遍歷Map的四種方法及Map.Entry詳解。轉載至https://blog.csdn.net/Darry_R/article/details/78915420
Map是java中的介面,Map.Entry是Map的一個內部介面。
Map提供了一些常用方法,如keySet()、entrySet()等方法,keySet()方法返回值是Map中key值的集合;entrySet()的返回值也是返回一個Set集合,此集合的型別為Map.Entry。
Map.Entry是Map宣告的一個內部介面,此介面為泛型,定義為Entry<K,V>。它表示Map中的一個實體(一個key-value對)。介面中有getKey(),getValue方法
下面是遍歷Map的四種方法:
- public static void main(String[] args) {
- Map<String, String> map = new HashMap<String, String>();
- map.put("1", "value1"
- map.put("2", "value2");
- map.put("3", "value3");
- //第一種:普遍使用,二次取值
- System.out.println("通過Map.keySet遍歷key和value:");
- for (String key : map.keySet()) {
- System.out.println("key= "+ key + " and value= " + map.get(key));
- }
- //第二種
- System.out.println("通過Map.entrySet使用iterator遍歷key和value:");
- Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
- while (it.hasNext()) {
- Map.Entry<String, String> entry = it.next();
- System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
- }
- //第三種:推薦,尤其是容量大時
- System.out.println("通過Map.entrySet遍歷key和value");
- for (Map.Entry<String, String> entry : map.entrySet()) {
- System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
- }
- //第四種
- System.out.println("通過Map.values()遍歷所有的value,但不能遍歷key");
- for (String v : map.values()) {
- System.out.println("value= " + v);
- }
- }
首先HashMap的底層實現用的時候一個Entry陣列
[java] view plain copy
- java] view plain copy
- <pre name="code" class="java"> /**
- * The table, resized as necessary. Length MUST Always be a power of two.
- */
- transient Entry[] table; //聲明瞭一個數組
- ........
- public HashMap() {
- this.loadFactor = DEFAULT_LOAD_FACTOR;
- threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
- table = new Entry[DEFAULT_INITIAL_CAPACITY];//初始化陣列的大小為DEFAULT_INITIAL_CAPACITY(這裡是16)
- init();
- }</pre><br>
再來看一下Entry是在什麼地方定義的,繼續上原始碼,我們在HashMap的原始碼中發現了它的定義,原來他是HashMap的一個內部類,並且實現了Map.Entry介面,
[java] view plain copy
- static class Entry<K,V> implements Map.Entry<K,V> {
- final K key;
- V value;
- Entry<K,V> next;
- final int hash;
- /**
- * Creates new entry.
- */
- Entry(int h, K k, V v, Entry<K,V> n) {
- value = v;
- next = n;
- key = k;
- hash = h;
- }
- public final K getKey() {
- return key;
- }
- public final V getValue() {
- return value;
- }
- public final V setValue(V newValue) {
- V oldValue = value;
- value = newValue;
- return oldValue;
- }
- public final boolean equals(Object o) {
- if (!(o instanceof Map.Entry))
- return false;
- Map.Entry e = (Map.Entry)o;
- Object k1 = getKey();
- Object k2 = e.getKey();
- if (k1 == k2 || (k1 != null && k1.equals(k2))) {
- Object v1 = getValue();
- Object v2 = e.getValue();
- if (v1 == v2 || (v1 != null && v1.equals(v2)))
- return true;
- }
- return false;
- }
- public final int hashCode() {
- return (key==null ? 0 : key.hashCode()) ^
- (value==null ? 0 : value.hashCode());
- }
- public final String toString() {
- return getKey() + "=" + getValue();
- }
- /**
- * This method is invoked whenever the value in an entry is
- * overwritten by an invocation of put(k,v) for a key k that's already
- * in the HashMap.
- */
- void recordAccess(HashMap<K,V> m) {
- }
- /**
- * This method is invoked whenever the entry is
- * removed from the table.
- */
- void recordRemoval(HashMap<K,V> m) {
- }
Map介面不是Collection介面的繼承。Map介面用於維護鍵/值對(key/value pairs)。該介面描述了從不重複的鍵到值的對映。
Map提供了一些常用方法,如keySet()、entrySet()等方法,keySet()方法返回值是Map中key值的集合;entrySet()的返回值也是返回一個Set集合,此集合的型別為Map.Entry。
下面看如下的遍歷程式碼
[java] view plain copy
- [java] view plain copy
- 1. Map map = new HashMap();
- Irerator iterator = map.entrySet().iterator();
- while(iterator.hasNext()) {
- Map.Entry entry = iterator.next();
- Object key = entry.getKey();
- //
- }
- 2.Map map = new HashMap();
- Set keySet= map.keySet();
- Irerator iterator = keySet.iterator;
- while(iterator.hasNext()) {
- Object key = iterator.next();
- Object value = map.get(key);
- //
- }
- 另外,還有一種遍歷方法是,單純的遍歷value值,Map有一個values方法,返回的是value的Collection集合。通過遍歷collection也可以遍歷value,如
- [java] view plain copy
- Map map = new HashMap();
- Collection c = map.values();
- Iterator iterator = c.iterator();
- while(iterator.hasNext()) {
- Object value = iterator.next();
還是要宣告下:本文僅供參考,歡迎轉載分享交流.(其中部分內容摘自其他博主.)
生活不只有Coding!