Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,861 questions

51,782 answers

573 users

How to use for each loop with HashMap and entrySet in Java

2 Answers

0 votes
import java.util.HashMap;
import java.util.Set;
import java.util.Map;

public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hmp = new HashMap<String, Integer>();
   
        hmp.put("java", 4);
        hmp.put("c++", 2);
        hmp.put("c", 6);
        hmp.put("python", 5);
        hmp.put("c#", 1);
        hmp.put("php", 3);
        
        Set<Map.Entry<String, Integer>> entrySet = hmp.entrySet();

        for (Map.Entry<String, Integer> entry : entrySet) {
            System.out.printf("%s : %d %n", entry.getKey(), entry.getValue());
        }
    }
}




/*
run:
      
c# : 1 
c++ : 2 
python : 5 
java : 4 
c : 6 
php : 3 
      
*/

 



answered Nov 8, 2021 by avibootz
0 votes
import java.util.HashMap;
import java.util.Set;

public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hmp = new HashMap<String, Integer>();
   
        hmp.put("java", 4);
        hmp.put("c++", 2);
        hmp.put("c", 6);
        hmp.put("python", 5);
        hmp.put("c#", 1);
        hmp.put("php", 3);
        
        hmp.entrySet().forEach(entry -> {
            System.out.println(entry.getKey() + " : " + entry.getValue());
        });
    }
}




/*
run:
      
c# : 1
c++ : 2
python : 5
java : 4
c : 6
php : 3
      
*/

 



answered Nov 8, 2021 by avibootz

Related questions

1 answer 175 views
1 answer 135 views
135 views asked Oct 10, 2020 by avibootz
1 answer 132 views
132 views asked Oct 10, 2020 by avibootz
1 answer 132 views
132 views asked Oct 10, 2020 by avibootz
1 answer 148 views
...