Java - HashMap에서 특정 key, value 삭제

HashMap에서 특정 요소(key, value)를 삭제하는 방법을 소개합니다.

1. remove()로 특정 요소 삭제

HashMap.remove()는 인자로 전달된 key를 HashMap에서 삭제하며, 삭제된 요소의 value를 리턴합니다.

만약 삭제하려는 key가 존재하지 않으면 null을 리턴하고 종료합니다. remove()는 key로만 삭제가 가능하며, value로 특정 요소를 삭제할 수는 없습니다.

아래 예제는 HashMap에서 요소를 삭제하는 예제입니다.

import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        Integer deleted = fruits.remove("kiwi");

        System.out.println("HashMap: " + fruits);
        System.out.println("Deleted: " + deleted);
    }
}

Output:

HashMap: {apple=100, grape=300}
Deleted: 200

1.1 remove()로 존재하지 않는 요소를 삭제했을 때

remove()의 인자로 존재하지 않는 요소의 key를 전달하면, 아무것도 삭제하지 않고 null을 리턴합니다.

import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        Integer deleted = fruits.remove("kawa");

        System.out.println("HashMap: " + fruits);
        System.out.println("Deleted: " + deleted);
    }
}

Output:

HashMap: {apple=100, kiwi=200, grape=300}
Deleted: null

2. removeIf()로 특정 요소 삭제

HashMap.entrySet().removeIf()로 특정 조건의 요소들을 삭제할 수 있습니다. 삭제에 성공하면 removeIf()는 true를 리턴합니다.

removeIf()를 사용하면 특정 key 또는 value를 찾아서 삭제할 수 있습니다.

2.1 key로 요소 삭제

아래 예제는 key가 kiwi인 요소를 삭제합니다. Entry.getKey()는 요소의 key를 리턴하며 이것을 비교하여 삭제 대상을 찾을 수 있습니다.

import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        boolean removed = fruits.entrySet().removeIf(
                entry -> entry.getKey().equals("kiwi"));

        System.out.println("HashMap: " + fruits);
        System.out.println("removed: " + removed);
    }
}

Output:

HashMap: {apple=100, grape=300}
removed: true

2.2 value로 요소 삭제

아래 예제는 value가 200인 요소를 삭제합니다. Entry.getValue()는 요소의 value를 리턴하며 이것을 비교하여 삭제 대상을 찾을 수 있습니다.

import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        boolean removed = fruits.entrySet().removeIf(
                entry -> entry.getValue().equals(200));

        System.out.println("HashMap: " + fruits);
        System.out.println("removed: " + removed);
    }
}

Output:

HashMap: {apple=100, grape=300}
removed: true

3. removeAll()로 특정 요소 삭제

removeAll()는 인자로 전달되는 Collection의 요소들을 HashMap에서 삭제합니다. 삭제에 성공하면 removeAll()는 true를 리턴합니다.

3.1 key로 요소 삭제

HashMap.keySet()은 요소들의 모든 key를 리턴하며, 이 Collection에서 removeAll()을 사용하여 일치하는 key들에 대한 요소를 삭제할 수 있습니다.

아래 예제는 HashMap에서 key가 grape, apple인 요소들을 찾아서 삭제합니다.

import java.util.Arrays;
import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        boolean removed = fruits.keySet().removeAll(Arrays.asList("grape", "apple"));

        System.out.println("HashMap: " + fruits);
        System.out.println("removed: " + removed);
    }
}

Output:

HashMap: {kiwi=200}
removed: true

3.2 value로 요소 삭제

HashMap.values()은 요소들의 모든 value들을 리턴하며, 이 Collection에서 removeAll()을 사용하여 일치하는 key들에 대한 요소를 삭제할 수 있습니다.

아래 예제는 HashMap에서 value가 100, 300인 요소들을 찾아서 삭제합니다.

import java.util.Arrays;
import java.util.HashMap;

public class Example {

    public static void main(String[] args) {

        HashMap<String, Integer> fruits = new HashMap<>();
        fruits.put("apple", 100);
        fruits.put("kiwi", 200);
        fruits.put("grape", 300);

        boolean removed = fruits.values().removeAll(Arrays.asList(100, 300));

        System.out.println("HashMap: " + fruits);
        System.out.println("removed: " + removed);
    }
}

Output:

HashMap: {kiwi=200}
removed: true
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha