El método size() de la interfaz SortedMap en Java se usa para obtener el tamaño de SortedMap, que se refiere al número del par clave-valor o asignaciones en SortedMap.
Sintaxis:
int size()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el tamaño de SortedMap, que también significa el número de pares clave-valor presentes en SortedMap.
Nota : El método size() en SortedMap se hereda de la interfaz Map en Java.
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 Gfg { public static void main(String[] args) { // Creating an empty SortedMap SortedMap<Integer, String> map = new TreeMap<Integer, String>(); // Mapping string values to int keys map.put(10, "Geeks"); map.put(15, "4"); map.put(20, "Geeks"); map.put(25, "Welcomes"); map.put(30, "You"); // Displaying the SortedMap System.out.println( "Initial Mappings are: " + map); // Displaying the size of the map System.out.println( "The size of the map is " + 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 Gfg { public static void main(String[] args) { // Creating an empty SortedMap SortedMap<String, Integer> map = new TreeMap<String, Integer>(); // Mapping int values to string keys map.put("Geeks", 10); map.put("4", 15); map.put("Geeks", 20); map.put("Welcomes", 25); map.put("You", 30); // Displaying the SortedMap System.out.println( "Initial Mappings are: " + map); // Displaying the size of the map System.out.println( "The size of the map is " + 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.
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/Map.html#size–