Saturday, September 6, 2025
HomeLanguagesJavaLinkedHashSet removeAll() method in Java with Example

LinkedHashSet removeAll() method in Java with Example

The removeAll() method of java.util.LinkedHashSet class is used to remove from this set all of its elements that are contained in the specified collection.

Syntax:

public boolean removeAll(Collection c)

Parameters: This method takes collection c as a parameter containing elements to be removed from this set.

Returns Value: This method returns true if this set changed as a result of the call.

Exception: This method throws NullPointerException if this set contains a null element and the specified collection does not permit null elements (optional), or if the specified collection is null.

Below are the examples to illustrate the removeAll() method.

Example 1:




// Java program to demonstrate
// removeAll() method for Integer value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
  
            // Creating object of LinkedHashSet<Integer>
            LinkedHashSet<Integer>
                set1 = new LinkedHashSet<Integer>();
  
            // Populating set1
            set1.add(1);
            set1.add(2);
            set1.add(3);
            set1.add(4);
            set1.add(5);
  
            // print set1
            System.out.println("LinkedHashSet before "
                               + "removeAll() operation : "
                               + set1);
  
            // Creating another object of  LinkedHashSet<Integer>
            LinkedHashSet<Integer>
                set2 = new LinkedHashSet<Integer>();
            set2.add(1);
            set2.add(2);
            set2.add(3);
  
            // print set2
            System.out.println("Collection Elements"
                               + " to be removed : "
                               + set2);
  
            // Removing elements from set
            // specified in set2
            // using removeAll() method
            set1.removeAll(set2);
  
            // print set1
            System.out.println("LinkedHashSet after "
                               + "removeAll() operation : "
                               + set1);
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output:

LinkedHashSet before removeAll() operation : [1, 2, 3, 4, 5]
Collection Elements to be removed : [1, 2, 3]
LinkedHashSet after removeAll() operation : [4, 5]

Example 2: For NullPointerException




// Java program to demonstrate
// removeAll() method for Integer value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
  
            // Creating object of LinkedHashSet<Integer>
            LinkedHashSet<Integer>
                set1 = new LinkedHashSet<Integer>();
  
            // Populating set1
            set1.add(1);
            set1.add(2);
            set1.add(3);
            set1.add(4);
            set1.add(5);
  
            // print set1
            System.out.println("LinkedHashSet before "
                               + "removeAll() operation : "
                               + set1);
  
            // Creating another object of  LinkedHashSet<Integer>
            LinkedHashSet<Integer>
                set2 = null;
  
            // print set2
            System.out.println("Collection Elements"
                               + " to be removed : "
                               + set2);
  
            System.out.println("\nTrying to pass "
                               + "null as a specified element\n");
  
            // Removing elements from set
            // specified in set2
            // using removeAll() method
            set1.removeAll(set2);
  
            // print set1
            System.out.println("LinkedHashSet after "
                               + "removeAll() operation : "
                               + set1);
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output:

LinkedHashSet before removeAll() operation : [1, 2, 3, 4, 5]
Collection Elements to be removed : null

Trying to pass null as a specified element

Exception thrown : java.lang.NullPointerException
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11805 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6754 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS