Two ways of traversing a map set

Source: Internet
Author: User
Tags set set
Import Java.util.HashMap;
Import Java.util.Iterator;
Import Java.util.Map;
Import Java.util.Set;

public class Maptest {public
	
	static void Main (string[] args) {
		
		HashMap map = new HashMap ();
		
		Map.put ("A", "John");
		Map.put ("B", "Dick");
		Map.put ("C", "Harry");
		Map.put ("A", "Zhao Liu");
		Map.put ("D", null);

		SYSTEM.OUT.PRINTLN ("---traversal way one---");
		
		Set set = Map.keyset ();	Returns the set of keys, which cannot be duplicated  because the contents of the set collection cannot be duplicated. For
		
		(Iterator iter = Set.iterator (); Iter.hasnext ();) {
			
			string key = (string) iter.next ();
			String value = (string) map.get (key);
			
			SYSTEM.OUT.PRINTLN (key + "----" + value);
		}
		
		
		SYSTEM.OUT.PRINTLN ("---traversal mode two---");
		
		Set Set2 = Map.entryset ();
		
		for (Iterator iter = Set2.iterator (); Iter.hasnext ();) {
		
			Map.entry Entry = (map.entry) iter.next ();
			
			String key = (string) entry.getkey ();
			String value = (string) entry.getvalue ();
			
			SYSTEM.OUT.PRINTLN (key + "---" + value);}}


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.