Skip to content
Related Articles
Open in App
Not now

Related Articles

IdentityHashMap remove() Method in Java

Improve Article
Save Article
Like Article
  • Last Updated : 24 Jul, 2018
Improve Article
Save Article
Like Article

The java.util.IdentityHashMap.remove() is an inbuilt method of IdentityHashMap class and is used to remove the mapping of any particular key from the map. It basically removes the values for any particular key in the Map.

Syntax:

Identity_Hash_Map.remove(Object key)

Parameters: The method takes one parameter key whose mapping is to be removed from the Map.

Return Value: The method returns the value that was previously mapped to the specified key if the key exists else the method returns NULL.

Below programs illustrates the working of java.util.IdentityHashMap.remove() method:
Program 1: When passing an existing key.




// Java code to illustrate the remove() method
import java.util.*;
  
public class Identity_Hash_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty IdentityHashMap
        Map<Integer, String> Identity_hash = new 
                       IdentityHashMap<Integer, String>();
    
        // Mapping string values to int keys
        Identity_hash.put(10, "Geeks");
        Identity_hash.put(15, "4");
        Identity_hash.put(20, "Geeks");
        Identity_hash.put(25, "Welcomes");
        Identity_hash.put(30, "You");
  
        // Displaying the IdentityHashMap
        System.out.println("Initial Mappings are: "
                                           Identity_hash);
  
        // Removing the existing key mapping
        String returned_value = 
                         (String)Identity_hash.remove(20);
  
        // Verifying the returned value
        System.out.println("Returned value is: "
                                      returned_value);
  
        // Displayin the new map
        System.out.println("New map is: " + Identity_hash);
    }
}


Output:

Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
Returned value is: Geeks
New map is: {30=You, 15=4, 10=Geeks, 25=Welcomes}

Program 2: When passing a new key.




// Java code to illustrate the remove() method
import java.util.*;
  
public class Identity_Hash_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty IdentityHashMap
        Map<Integer, String> Identity_hash = 
                   new IdentityHashMap<Integer, String>();
  
        // Mapping string values to int keys
        Identity_hash.put(10, "Geeks");
        Identity_hash.put(15, "4");
        Identity_hash.put(20, "Geeks");
        Identity_hash.put(25, "Welcomes");
        Identity_hash.put(30, "You");
  
        // Displaying the IdentityHashMap
        System.out.println("Initial Mappings are: "
                                          Identity_hash);
  
        // Removing the new key mapping
        String returned_value = 
                        (String)Identity_hash.remove(50);
  
        // Verifying the returned value
        System.out.println("Returned value is: "
                                    returned_value);
  
        // Displayin the new map
        System.out.println("New map is: "+Identity_hash);
    }
}


Output:

Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
Returned value is: null
New map is: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}

Note: The same operation can be performed with any type of Mappings with variation and combination of different data types.


My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!