Thursday, January 29, 2026
HomeLanguagesJavaList removeAll() method in Java with Examples

List removeAll() method in Java with Examples

This method is used to remove all the elements present in the collection from the specified list.

Syntax:

boolean removeAll(Collection c)

Parameters: This method has only argument, collection of which elements are to be removed from the given list.

Returns: This method returns True if elements are removed and list changes.

Below programs show the implementation of this method.

Program 1:




// Java code to show the implementation of
// removeAll method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<Integer> l = new LinkedList<>();
        l.add(10);
        l.add(30);
        l.add(50);
        l.add(70);
        l.add(90);
        System.out.println(l);
  
        ArrayList<Integer> arr = new ArrayList<>();
        arr.add(30);
        arr.add(50);
        l.removeAll(arr);
  
        System.out.println(l);
    }
}


Output:

[10, 30, 50, 70, 90]
[10, 70, 90]

Program 2: Below is the code to show implementation of list.removeAll() using Linkedlist.




// Java code to show the implementation of
// removeAll method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<String> l = new LinkedList<>();
        l.add("10");
        l.add("30");
        l.add("50");
        l.add("70");
        l.add("90");
        System.out.println(l);
  
        ArrayList<String> arr = new ArrayList<>();
        arr.add("30");
        arr.add("50");
        l.removeAll(arr);
  
        System.out.println(l);
    }
}


Output:

[10, 30, 50, 70, 90]
[10, 70, 90]

Reference:
Oracle Docs

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32477 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6848 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6916 POSTS0 COMMENTS