JAVA gets the values in the map

Source: Internet
Author: User

JAVA gets the values in the map
  1.   Map<string, string> map=new hashmap<string, string> ();      Map.put ("name", "Lao Wei");      Map.put ("Sex", "male");      Map.put ("Address", "Dalian");  

  2. Method 1

  3. For (map.entry<string, string> MapString:map.entrySet ()) {   String key=mapstring.getkey ();//Times method Gets the name of the key-value pair   String Value=mapstring.getvalue ();//Secondary method gets the value   of a key-value pair System.out.println (key+ ":" +value);  


  4. Method 2   

  5.       for (Iterator Iterator = Set.iterator (); Iterator.hasnext ();) {            Map.entry string = (map.entry) iterator.next ();            String key= ((entry<string, string>) string). GetKey ();//Times method Gets the name of the key-value pair            String value= ((entry<string, string >). GetValue ();//Times method Gets the value of a key-value pair            

  6. Method 3

    Map map = new HashMap (), Map.put ("Dog", "dogs"), Map.put ("Cat", "cat"), Map.put ("Monkey", "monkey"); for (Object Se:map.keySet ()) { string s = (string) map.get (SE); System.out.println (s);}


JAVA gets the values in the map

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.