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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,039 questions

40,766 answers

573 users

How to iterate over the key-value pairs in a HashMap use the forEach() with Java

1 Answer

0 votes
import java.util.HashMap;

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", 7);
        hmp.put("python", 5);
        hmp.put("rust", 6);
        hmp.put("c#", 1);
        hmp.put("php", 3);
            
        hmp.forEach((key, value) -> System.out.println(key + ": " + value));
  
    }
}
        
        
        
        
/*
run:
        
c#: 1
rust: 6
c++: 2
python: 5
java: 4
c: 7
php: 3
        
*/

 





answered Nov 15, 2023 by avibootz

Related questions

2 answers 62 views
1 answer 39 views
2 answers 66 views
66 views asked Jan 21, 2022 by avibootz
1 answer 63 views
...