El método java.util.IdentityHashMap.isEmpty() de la clase IdentityHashMap se utiliza para verificar el vacío del mapa. El método devuelve True si no hay ningún par clave-valor o asignación presente en el mapa; de lo contrario, False.
Sintaxis:
Identity_Hash_Map.isEmpty()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve booleano verdadero si el mapa está vacío o no contiene ningún par de mapeo; de lo contrario, booleano es falso.
Los siguientes programas ilustran el funcionamiento del método java.util.IdentityHashMap.isEmpty():
Programa 1: asignación de valores de string a claves enteras.
// Java code to illustrate the isEmpty() method import java.util.*; public class Identity_Hash_Map_Demo { public static void main(String[] args) { // Creating an empty IdentityHashMap Map<String, Integer> identity_hash = new IdentityHashMap<String, Integer>(); // Mapping int values to string keys identity_hash.put("Geeks", 10); identity_hash.put("4", 15); identity_hash.put("Geeks", 20); identity_hash.put("Welcomes", 25); identity_hash.put("You", 30); // Displaying the IdentityHashMap System.out.println("The Mappings are: "+ identity_hash); // Checking for the emptiness of Map System.out.println("Is the map empty? "+ identity_hash.isEmpty()); } }
The Mappings are: {Geeks=20, Welcomes=25, You=30, 4=15} Is the map empty? false
Programa 2: para un IdentityHashMap vacío
// Java code to illustrate the isEmpty() method import java.util.*; public class Identity_Hash_Map_Demo { public static void main(String[] args) { // Creating an empty IdentityHashMap Map<String, Integer> identity_hash = new IdentityHashMap<String, Integer>(); // Displaying the IdentityHashMap System.out.println("The Mappings are: "+ identity_hash); // Checking for the emptiness of Map System.out.println("Is the map empty? "+ identity_hash.isEmpty()); } }
The Mappings are: {} Is the map empty? true
Nota: La misma operación se puede realizar con cualquier tipo de Mapping con variación y combinación de diferentes tipos de datos.
Todos los métodos de la clase Java.util.IdentityHashMap
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