您好,登錄后才能下訂單哦!
本篇內容主要講解“Java高級之HashMap中的entrySet()方法怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java高級之HashMap中的entrySet()方法怎么使用”吧!
entrySet()方法得到HashMap中各個鍵值對映射關系的集合。
然后Map.Entry中包含了getKey()和getValue()方法獲取鍵和值。
示例:
public class Demo { public static void main(String[] args) { Map<String, String> map = new HashMap<>(); map.put("abc", "123"); map.put("efg", "456"); // 使用增強型for遍歷循環Map集合 Set<Map.Entry<String, String>> entrySet = map.entrySet(); for (Map.Entry<String, String> entry : entrySet) { System.out.println(entry.getKey() + "->" + entry.getValue()); } } } /** * 打印結果: * abc->123 * efg->456 */
HashMap的entrySet()方法返回Set<Map.Entry<String, String>>,那么為什么entrySet()方法可以得到鍵值對映射集合呢?
public Set<Map.Entry<K, V>> entrySet() { Set<Map.Entry<K, V>> es; return (es = entrySet) == null ? (entrySet = new EntrySet()) : es; }
其實entrySet()方法的原理和keySet()方法、values()方法的原理是一致的。
entrySet()方法的源碼注釋如下:
/** * 該方法返回值就是這個map中各個鍵值對映射關系的集合 * 1.Map中采用Entry內部類來表示一個映射項,映射項包含Key和Value * 2.Map.Entry里面包含getKey()和getValue()方法 * * @return 返回map中各個鍵值對映射關系的集合 */ public Set<Map.Entry<K, V>> entrySet() { Set<Map.Entry<K, V>> es; return (es = entrySet) == null ? (entrySet = new EntrySet()) : es; /* 等價于(代碼復雜化) Set<Map.Entry<K, V>> es = entrySet; if (es == null) { entrySet = new EntrySet(); return entrySet; } else { return es; } */ }
那么看看編譯后生成的字節碼文件Demo.class
public class Demo { public Demo() { } public static void main(String[] args) { Map<String, String> map = new HashMap(); map.put("abc", "123"); map.put("efg", "456"); Set<Entry<String, String>> entrySet = map.entrySet(); Iterator var3 = entrySet.iterator(); while(var3.hasNext()) { Entry<String, String> entry = (Entry)var3.next(); System.out.println((String)entry.getKey() + "->" + (String)entry.getValue()); } } }
能夠獲取到元素是通過迭代器Iterator遍歷得來的,所以entrySet()方法能有鍵值對的映射集合,是因為iterator()方法。
那么iterator()方法是哪里的呢?
在entrySet()方法中使用new實例化了一個EntrySet類
查看EntrySet類源碼,里面有個iterator()方法,字節碼文件中調用的就是該iterator()方法
在該方法的return語句中又實例化了EntryIterator類作為返回值,是一個迭代器,查看EntryIterator類的源碼,只有一個next()方法
該方法被調用返回的類型就是Map.Entry<K, V>,而得到的結果是nextNode()方法的返回值。
nextNode()方法的作用就是返回下一個結點。
而Entry是Map的內部接口,該Entry接口有幾個方法可以設置或得到鍵值。
所以能夠通過entry.getKey()和entry.getValue()方法獲取到鍵和值。
并且Node<K, V>是Map.Entry<K, V>的實現類。
到此,相信大家對“Java高級之HashMap中的entrySet()方法怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。