您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“java中LinkedHashMap和HashMap區(qū)別是什么”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“java中LinkedHashMap和HashMap區(qū)別是什么”吧!
1、說(shuō)明
Map基本上可以使用HashMap,但是HashMap有一個(gè)問(wèn)題,那就是迭代HashMap的順序不是HashMap放置的順序,就是無(wú)序。HashMap的這個(gè)缺點(diǎn)往往會(huì)帶來(lái)麻煩,因?yàn)橛行﹫?chǎng)景我們期待一個(gè)有序的Map,這就是LinkedHashMap。
2、區(qū)別實(shí)例
public static void main(String[] args) { Map<String, String> map = new LinkedHashMap<String, String>(); map.put("apple", "蘋(píng)果"); map.put("watermelon", "西瓜"); map.put("banana", "香蕉"); map.put("peach", "桃子"); Iterator iter = map.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); System.out.println(entry.getKey() + "=" + entry.getValue()); } }
可以看到,在使用上,LinkedHashMap和HashMap的區(qū)別就是LinkedHashMap是有序的。 上面這個(gè)例子是根據(jù)插入順序排序。LinkedHashMap還有一個(gè)參數(shù)決定是否在此基礎(chǔ)上再根據(jù)訪(fǎng)問(wèn)順序(get,put)排序。
Java是一門(mén)面向?qū)ο缶幊陶Z(yǔ)言,可以編寫(xiě)桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序。
到此,相信大家對(duì)“java中LinkedHashMap和HashMap區(qū)別是什么”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。