【JAVA】HashMap入門到放棄:使用HashMap

來源:互聯網
上載者:User

標籤:nta   ==   put   map   entry   hash   java   key   item   

摘要:作為HashMap系列學習筆記的開篇,我認為要先熟悉HashMap的使用情境。

==========================================================================================

Map本質上還是屬於集合類型的資料結構。

下面的程式碼片段示範了Map的常用操作(CURD),注意遍曆Map盡量使用Entry方式。

 1 HashMap<String, Double> scores = new HashMap<>(); 2  3         scores.put("Sam", 100.0); 4         scores.put("Jacky", 50.0); 5         scores.put("Tim", 80.0); 6  7         System.out.print(scores); 8  9         scores.put("Tim", 100.0);10         System.out.print(scores);11         System.out.print(scores.toString());12 13         System.out.print(scores.get("Sam"));14 15         System.out.println(scores.containsKey("Sam"));16         System.out.println(scores.containsValue(100.0));17         18         //traverse, cost more time19         Iterator<String> it = scores.keySet().iterator();20         while(it.hasNext()) {21             String tmp = it.next();22             System.out.println(tmp);23             System.out.println(scores.get(tmp));24         }25 26         System.out.println("count of student:" + scores.size());27         System.out.println("scores is " + (scores.isEmpty() ? "empty" : "not empty"));28 29         //traverse and delete target, cost less30         Iterator<Map.Entry<String, Double>> begIt = scores.entrySet().iterator();31         for(; begIt.hasNext(); ) {32             Map.Entry<String, Double> item = begIt.next();33 34             if(item.getValue() == 100.0) {35                 begIt.remove();36             }37         }38 39         System.out.println(scores);40 41         scores.clear();42         System.out.println(scores);

 

輸出如下:

{Tim=80.0, Jacky=50.0, Sam=100.0}{Tim=100.0, Jacky=50.0, Sam=100.0}{Tim=100.0, Jacky=50.0, Sam=100.0}100.0true
true
Tim
100.0
Jacky
50.0
Sam
100.0
count of student:3
scores is not empty
{Jacky=50.0}
{}

 

PS:實際項目中HashMap用的不多,複雜的操作(如key為HashMap)就不做示範了。

【JAVA】HashMap入門到放棄:使用HashMap

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.