Four ways to traverse Map, four ways to traverse map

Source: Internet
Author: User

Four ways to traverse Map, four ways to traverse map

In Java programming, collection traversal is used all the time. Thanks for the following methods of Map traversal:

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"); // the first type is commonly used. The second value is System. out. println ("through Map. keySet traversal key and value: "); for (String key: map. keySet () {System. out. println ("key =" + key + "and value =" + map. get (key);} // second System. out. println ("through Map. entrySet uses iterator to Traverse key and 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 ();} // The third type is recommended, especially when the capacity is large. out. println ("through Map. entrySet traverses key and value "); for (Map. entry <String, String> entry: map. entrySet () {System. out. println ("key =" + entry. getKey () + "and value =" + entry. getValue ();} // The fourth System. out. println ("through Map. values () traverses all values, but cannot Traverse key "); for (String v: map. values () {System. out. println ("value =" + v );}}


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.