How to Remove Key Value Pairs or Entries from HashMap [Snippet]
Let's take a look at how to remove entries from a map in Java, complete with examples.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we will discuss how to remove key-value pair or entry from HashMap. In this article, we will look into two different ways we can remove key-value pair or entry from HashMap.
- Using
java.util.Map.remove(Object key)
method - Using
java.util.Collection.removeIf(Predicate<? super Entry<String, Integer>
>filter)
method from Java 8
1. Using java.util.Map.remove(Object key) Method
The remove()
method removes the mapping for a key from this map if it is present (optional operation).
package net.javaguides.examples;
import java.util.HashMap;
import java.util.Map;
/**
* Demonstrates How to Remove Key Value Pairs or Entries from HashMap [Snippet]
* @author Ramesh Fadatare
*
*/
public class RemoveKeyValuePairHashMap {
public static void main(String[] args) {
// create two hashmap
Map < String, Integer > courseMap = new HashMap < String, Integer > ();
courseMap.put("Java", 1);
courseMap.put("C", 2);
courseMap.put("C++", 3);
System.out.println("Before removal");
printMap(courseMap);
// using normal remove method
courseMap.remove("Java");
System.out.println("After removal");
printMap(courseMap);
}
private static void printMap(Map < String, Integer > courseMap) {
for (String s: courseMap.keySet()) {
System.out.println(s);
}
}
}
Output:
Before removal
Java
C++
C
After removal
C++
C
2. java.util.Collection.removeIf(Predicate<? super Entry<String, Integer>> filter) Method From Java 8
The removeIf()
method of the Collection class, which allows you to remove entries based upon some condition or predicate, takes a lambda expression, which can be used to supply the predicate you want. For example, we can rewrite the above code in Java 8, as shown in the following example:
package net.javaguides.examples;
import java.util.HashMap;
import java.util.Map;
/**
* Demonstrates How to Remove Key Value Pairs or Entries from HashMap [Snippet]
* @author Ramesh Fadatare
*
*/
public class RemoveKeyValuePairHashMap {
public static void main(String[] args) {
// create two hashmap
Map < String, Integer > courseMap = new HashMap < String, Integer > ();
courseMap.put("Java", 1);
courseMap.put("C", 2);
courseMap.put("C++", 3);
System.out.println("Before removal : using java 8 ");
printMap(courseMap);
// using java 8 removeIf method
courseMap.entrySet().removeIf(e - > e.getKey().equals("Java"));
System.out.println("After removal : using Java 8");
printMap(courseMap);
}
private static void printMap(Map < String, Integer > courseMap) {
for (String s: courseMap.keySet()) {
System.out.println(s);
}
}
}
Output:
Output:
Before removal : using java 8
Java
C++
C
After removal : using Java 8
C++
C
Collections framework examples:
- Conversion Between Array and Set in Java
- Conversion Between Array and List in Java
- Java Convert Map to Set Example
- Java Convert Map to List Example
- Java Convert Map to Array Example
- Convert a Map to an Array, List and Set in Java
- Java 8 Convert List to Map Example
- Java 8 - Merging Two Maps Example
- Java Convert Array to String [Snippet]
- Different Ways to Iterate over List, Set and Map in Java
- Java Comparator Interface Example
- Java Comparable Interface Example
- Java IdentityHashMap Example
- Java WeakHashMap Example
- Java EnumMap Example
- Java CopyOnWriteArraySet Example
- Java EnumSet Class Example
- Guide to Java 8 forEach Method
- Different Ways to Iterate over a List in Java [Snippet]
- Different Ways to Iterate over a Set in Java [Snippet]
- Different Ways to Iterate over a Map in Java [Snippet]
Published at DZone with permission of Ramesh Fadatare. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments