The java.util.HashMap.remove() is an inbuilt method of HashMap 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:
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.HashMap.remove() method:
Program 1: When passing an existing key.
Java
import java.util.*;
public class Hash_Map_Demo {
public static void main(String[] args) {
HashMap<Integer, String> hash_map = new HashMap<Integer, String>();
hash_map.put( 10 , "Geeks" );
hash_map.put( 15 , "4" );
hash_map.put( 20 , "Geeks" );
hash_map.put( 25 , "Welcomes" );
hash_map.put( 30 , "You" );
System.out.println( "Initial Mappings are: " + hash_map);
String returned_value = (String)hash_map.remove( 20 );
System.out.println( "Returned value is: " + returned_value);
System.out.println( "New map is: " + hash_map);
}
}
|
Output:
Initial Mappings are: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4}
Returned value is: Geeks
New map is: {25=Welcomes, 10=Geeks, 30=You, 15=4}
Program 2: When passing a new key.
Java
import java.util.*;
public class Hash_Map_Demo {
public static void main(String[] args) {
HashMap<Integer, String> hash_map = new HashMap<Integer, String>();
hash_map.put( 10 , "Geeks" );
hash_map.put( 15 , "4" );
hash_map.put( 20 , "Geeks" );
hash_map.put( 25 , "Welcomes" );
hash_map.put( 30 , "You" );
System.out.println( "Initial Mappings are: " + hash_map);
String returned_value = (String)hash_map.remove( 50 );
System.out.println( "Returned value is: " + returned_value);
System.out.println( "New map is: " + hash_map);
}
}
|
Output:
Initial Mappings are: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4}
Returned value is: null
New map is: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4}
Note: The same operation can be performed with any type of Mappings with variation and combination of different data types.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 May, 2021
Like Article
Save Article