El método Map size() en Java se utiliza para obtener el número total de entradas, es decir, el par clave-valor. Por lo tanto, este método es útil cuando desea que las entradas totales estén presentes en el mapa. Entero.MAX_VALUE devuelve Entero.MAX_VALUE
Sintaxis:
tamaño int();
Parámetro: Este método no toma ningún parámetro.
Valor devuelto: Este método devuelve el
Ejemplo 1: para entrada no genérica
Java
// Java program to illustrate // the Map size() Method import java.util.*; public class MapSizeExample { // Main Method public static void main(String[] args) { Map map = new HashMap(); // Adding key-values map.put(1, "Amit"); map.put(5, "Rahul"); map.put(2, "Jai"); map.put(6, "Amit"); // using the method System.out.println("Size of the map is : " + map.size()); } }
Producción:
Size of the map is : 4
Ejemplo 2: para entrada genérica
Java
// Java program to illustrate // the Map size() Method import java.util.*; class MapSizeExample { // Main Method public static void main(String[] args) { Map<Integer, String> map = new HashMap<Integer, String>(); map.put(1, "one"); map.put(2, "two"); map.put(3, "three"); map.put(4, "four"); // using the method System.out.println("Size of map is :" + map.size()); } }
Producción:
Size of the map is : 4
Publicación traducida automáticamente
Artículo escrito por AshishVishwakarma1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA