Java - HashSet.remove() 사용 방법 및 예제

HashSet의 다음과 같이 아이템을 삭제하는 메소드들을 제공합니다.

1. HashSet.remove()

인자로 전달된 아이템이 HashSet에 존재한다면 아이템을 삭제하고 true를 리턴합니다. 그렇지 않다면 false를 리턴합니다.

public boolean remove(Object o)

1.1 HashSet.remove() 예제

다음은 remove() 메소드를 사용하는 예제입니다.

package collections;

import java.util.*;

public class HashSetExample {
    public static void main(String args[]) {

        Set<String> fruits = new HashSet<String>();
        fruits.add("apple");
        fruits.add("banana");
        fruits.add("kiwi");
        System.out.println("fruits: " + fruits);

        // kiwi를 두번 삭제합니다. 첫번째는 HashSet에 존재하기 때문에
        // 아이템이 삭제되고 true를 리턴합니다.
        // 두번째 삭제할 때는 존재하지 않기 때문에 false가 리턴됩니다.
        System.out.println("remove(kiwi) -> success ? " + fruits.remove("kiwi"));
        System.out.println("remove(kiwi) -> success ? " + fruits.remove("kiwi"));

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

결과

fruits: [banana, apple, kiwi]
remove(kiwi) -> success ? true
remove(kiwi) -> success ? false
fruits: [banana, apple]

2. HashSet.removeAll()

인자로 Collection 객체를 전달하며, 인자가 갖고 있는 아이템들을 HashSet에서 삭제해 줍니다. 아이템이 삭제된 것이 있으면 true를 리턴하며, 그렇지 않으면 false를 리턴합니다.

boolean removeAll(Collection<?> c)

2.1 HashSet.removeAll() 예제

다음은 removeAll() 메소드를 사용하는 예제입니다.

package collections;

import java.util.*;

public class HashSetExample {
    public static void main(String args[]) {
        // HashSet에 아이템들을 추가합니다.
        Set<String> fruits = new HashSet<String>();
        fruits.add("apple");
        fruits.add("banana");
        fruits.add("kiwi");
        fruits.add("blueberry");
        System.out.println("fruits: " + fruits);

        // 삭제할 Collection 객체를 만듭니다.
        List<String> removed = new ArrayList<>();
        removed.add("apple");
        removed.add("blueberry");

        // Collection의 객체들을 HashSet에서 삭제합니다.
        // 첫번째 호출은 삭제된 것이 있어서 true를 리턴,
        // 두번째 호출은 삭제된 것이 없어서 false를 리턴합니다.
        System.out.println("removeAll(removed) -> success ? "
              + fruits.removeAll(removed));
        System.out.println("removeAll(removed) -> success ? "
              + fruits.removeAll(removed));

        // Collection에 kiwi를 추가하고, 다시 removeAll을 호출하면
        // 삭제된 것이 있기 때문에 true를 리턴합니다.
        removed.add("kiwi");
        System.out.println("removeAll(removed) -> success ? "
              + fruits.removeAll(removed));

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

결과

fruits: [banana, apple, kiwi, blueberry]
removeAll(removed) -> success ? true
removeAll(removed) -> success ? false
removeAll(removed) -> success ? true
fruits: [banana]

3. HashSet.removeIf()

removeIf() 메소드는 인자로 람다식을 받을 수 있습니다. 즉, 함수형 인터페이스로 만들어진 객체를 받습니다.

람다식의 조건을 충족하는 아이템들을 HashSet에서 삭제합니다. 삭제된 아이템이 있다면 true를 리턴하며, 그렇지 않다면 fales를 리턴합니다.

public boolean removeIf(Predicate<? super E> filter)

3.1 HashSet.removeIf() 예제

다음은 removeIf() 메소드를 사용한 예제입니다.

package collections;

import java.util.*;

public class HashSetExample {
    public static void main(String args[]) {
        Set<String> fruits = new HashSet<String>();
        fruits.add("apple");
        fruits.add("banana");
        fruits.add("kiwi");
        fruits.add("blueberry");
        System.out.println("fruits: " + fruits);

        // 문자열의 길이가 5보다 큰 아이템들을 모두 삭제합니다.
        // 아이템들이 삭제되었기 때문에 true를 리턴합니다.
        System.out.println("removeIf() -> success ? "
                + fruits.removeIf(fruit -> fruit.length() > 5));

        System.out.println("fruits: " + fruits);

        // 문자열의 길이가 6보다 큰 아이템이 없기 때문에,
        // 삭제되지 않고 false를 리턴합니다.
        System.out.println("removeIf() -> success ? "
                + fruits.removeIf(fruit -> fruit.length() > 6));

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

결과

fruits: [banana, apple, kiwi, blueberry]
removeIf() -> success ? true
fruits: [apple, kiwi]
removeIf() -> success ? false
fruits: [apple, kiwi]

참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha