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