Java: Count the number of key-value (size) mappings in a map
Java Collection, HashMap Exercises: Exercise-2 with Solution
Write a Java program to count the number of key-value (size) mappings in a map.
Sample Solution:-
Java Code:
import java.util.*;
public class Example2 {
public static void main(String args[]){
HashMap<Integer,String> hash_map= new HashMap<Integer,String>();
hash_map.put(1, "Red");
hash_map.put(2, "Green");
hash_map.put(3, "Black");
hash_map.put(4, "White");
hash_map.put(5, "Blue");
System.out.println("Size of the hash map: "+hash_map.size());
}
}
Sample Output:
Size of the hash map: 5
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Associate the specified value with the specified key in a HashMap.
Next: Copy all of the mappings from the specified map to another map.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/collection/java-collection-hash-map-exercise-2.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics