El método java.util.IdentityHashMap.equals() en Java se usa para verificar la igualdad entre dos mapas. Verifica si los elementos de un mapa pasado como parámetro son iguales a los elementos de este mapa o no.
Sintaxis:
ihashmap1.equals(ihashmap2)
Parámetros: El método acepta un parámetro ihashmap2 de tipo mapa hash de identidad y se refiere al mapa cuya igualdad se va a comprobar con este mapa hash.
Valor devuelto: el método devuelve verdadero si la igualdad es válida para el mapa de objetos; de lo contrario, devuelve falso.
Los siguientes programas ilustran el funcionamiento del método java.util.IdentityHashMap.equals():
Programa 1:
// Java code to illustrate the equals() method import java.util.*; public class Identity_Hash_Map_Demo { public static void main(String[] args) { // Creating an empty IdentityHashMap IdentityHashMap<Integer, String> identity_hash1 = new IdentityHashMap<Integer, String>(); IdentityHashMap<Integer, String> identity_hash2 = new IdentityHashMap<Integer, String>(); // Mapping string values to int keys identity_hash1.put(10, "Geeks"); identity_hash1.put(15, "4"); identity_hash1.put(20, "Geeks"); identity_hash1.put(25, "Welcomes"); identity_hash1.put(30, "You"); // Mapping string values to int keys identity_hash2.put(10, "Geeks"); identity_hash2.put(15, "4"); identity_hash2.put(20, "Geeks"); identity_hash2.put(25, "Welcomes"); identity_hash2.put(30, "You"); // Displaying the IdentityHashMap System.out.println("First Map: " + identity_hash1); // Displaying the final IdentityHashMap System.out.println("Second Map: " + identity_hash2); // Displaying the equality System.out.println("Equality: "+ identity_hash1.equals(identity_hash2)); } }
First Map: {10=Geeks, 30=You, 20=Geeks, 25=Welcomes, 15=4} Second Map: {10=Geeks, 30=You, 20=Geeks, 25=Welcomes, 15=4} Equality: true
Programa 2:
// Java code to illustrate the equals() method import java.util.*; public class Identity_Hash_Map_Demo { public static void main(String[] args) { // Creating an empty IdentityHashMap IdentityHashMap<Integer, String> identity_hash1 = new IdentityHashMap<Integer, String>(); IdentityHashMap<Integer, String> identity_hash2 = new IdentityHashMap<Integer, String>(); // Mapping string values to int keys identity_hash1.put(10, "Geeks"); identity_hash1.put(15, "4"); identity_hash1.put(20, "Geeks"); identity_hash1.put(25, "Welcomes"); identity_hash1.put(30, "You"); // Mapping string values to int keys identity_hash2.put(10, "Geeks"); identity_hash2.put(15, "4"); identity_hash2.put(20, "Geek"); identity_hash2.put(25, "Welcomes"); identity_hash2.put(30, "You"); // Displaying the IdentityHashMap System.out.println("First Map: " + identity_hash1); // Displaying the final IdentityHashMap System.out.println("Second Map: " + identity_hash2); // Displaying the equality System.out.println("Equality: "+ identity_hash1.equals(identity_hash2)); } }
First Map: {10=Geeks, 30=You, 20=Geeks, 25=Welcomes, 15=4} Second Map: {10=Geeks, 30=You, 20=Geek, 25=Welcomes, 15=4} Equality: false
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