El método size() de la interfaz NavigableMap 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:
NavigableMap.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 del método size():
Programa 1: Asignación de valores de string a claves enteras.
// Java code to illustrate the size() method import java.util.*; public class NavigableMap_Demo { public static void main(String[] args) { // Creating an empty NavigableMap NavigableMap<Integer, String> nav_map = new TreeMap<Integer, String>(); // Mapping string values to int keys nav_map.put(10, "Geeks"); nav_map.put(15, "4"); nav_map.put(20, "Geeks"); nav_map.put(25, "Welcomes"); nav_map.put(30, "You"); // Displaying the NavigableMap System.out.println("Initial Mappings are: " + nav_map); // Displaying the size of the map System.out.println("The size of the map is " + nav_map.size()); } }
Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You} 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 NavigableMap_Demo { public static void main(String[] args) { // Creating an empty TreeMap NavigableMap<String, Integer> nav_map = new TreeMap<String, Integer>(); // Mapping int values to string keys nav_map.put("Geeks", 10); nav_map.put("4", 15); nav_map.put("Geeks", 20); nav_map.put("Welcomes", 25); nav_map.put("You", 30); // Displaying the NavigableMap System.out.println("Initial Mappings are: " + nav_map); // Displaying the size of the map System.out.println("The size of the map is " + nav_map.size()); } }
Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30} 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