El método java.util.HashMap.size() de la clase HashMap se usa para obtener el tamaño del mapa que se refiere al número del par clave-valor o asignaciones en el mapa.
Sintaxis:
Hash_Map.size()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el tamaño del mapa, lo que también significa el número de pares clave-valor presentes en el mapa.
Los siguientes programas ilustran el funcionamiento de java.util.HashMap.size():
Programa 1: Asignación de valores de string a claves enteras.
// Java code to illustrate the size() method import java.util.*; public class Hash_Map_Demo { public static void main(String[] args) { // Creating an empty HashMap HashMap<Integer, String> hash_map = new HashMap<Integer, String>(); // Mapping string values to int keys hash_map.put(10, "Geeks"); hash_map.put(15, "4"); hash_map.put(20, "Geeks"); hash_map.put(25, "Welcomes"); hash_map.put(30, "You"); // Displaying the HashMap System.out.println("Initial Mappings are: " + hash_map); // Displaying the size of the map System.out.println("The size of the map is " + hash_map.size()); } }
Initial Mappings are: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4} The size of the map is 5
Programa 2: Asignación de valores enteros a claves de string.
// Java code to illustrate the size() method import java.util.*; public class Hash_Map_Demo { public static void main(String[] args) { // Creating an empty HashMap HashMap<String, Integer> hash_map = new HashMap<String, Integer>(); // Mapping int values to string keys hash_map.put("Geeks", 10); hash_map.put("4", 15); hash_map.put("Geeks", 20); hash_map.put("Welcomes", 25); hash_map.put("You", 30); // Displaying the HashMap System.out.println("Initial Mappings are: " + hash_map); // Displaying the size of the map System.out.println("The size of the map is " + hash_map.size()); } }
Initial Mappings are: {4=15, Geeks=20, You=30, Welcomes=25} The size of the map is 4
Nota: La misma operación se puede realizar con cualquier tipo de Mapping con variación y combinación de diferentes tipos de datos.
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA