How to iterate over each entry of HashMap in a Java

1 Answer

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("javascript", 7);
        hmp.put("php", 3);
        
        for (var entry : hmp.entrySet()) {
            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 136 views
2 answers 270 views
2 answers 243 views
243 views asked Jan 21, 2022 by avibootz
1 answer 183 views
3 answers 118 views
118 views asked Mar 3, 2025 by avibootz
1 answer 84 views
...