Wednesday, October 1, 2025
HomeLanguagesJavaList remove(Object obj) method in Java with Examples

List remove(Object obj) method in Java with Examples

The remove(Object obj) method of List interface in Java is used to remove the first occurrence of the specified element obj from this List if it is present in the List.

Syntax:

boolean remove(Object obj)

Parameters: It accepts a single parameter obj of List type which represents the element to be removed from the given List.

Return Value: It returns a boolean value True after removing the first occurrence of the specified element from the List and otherwise if the element is not present in the List then this method will return False.

Below program illustrate the remove(Object obj) method of List in Java:

Program 1:




// Program to illustrate the
// remove(int index) method
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declare an empty List of size 5
        List<Double> list = new ArrayList<Double>(5);
  
        // Add elements to the list
        list.add(5.0);
        list.add(10.5);
        list.add(15.1);
        list.add(20.6);
        list.add(25.2);
  
        // Element needed to be removed
        double obj = 15.1;
  
        // Initial list
        System.out.println("Initial List: " + list);
  
        // remove element
        list.remove(obj);
  
        // Final list
        System.out.println("Final List: " + list);
    }
}


Output:

Initial List: [5.0, 10.5, 15.1, 20.6, 25.2]
Final List: [5.0, 10.5, 20.6, 25.2]

Program 2:




// Program to illustrate the
// remove(int index) method
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declare an empty List of size 5
        List<String> list = new ArrayList<String>(5);
  
        // Add elements to the list
        list.add("Welcome");
        list.add("to");
        list.add("Geeks");
        list.add("for");
        list.add("Geeks");
  
        // Element to be removed
        String obj = "for";
  
        // Initial list
        System.out.println("Initial List: " + list);
  
        // remove element
        list.remove(obj);
  
        // Final list
        System.out.println("Final List: " + list);
    }
}


Output:

Initial List: [Welcome, to, Geeks, for, Geeks]
Final List: [Welcome, to, Geeks, Geeks]

Note: Be careful while using a List of integers as while passing an integer element to the remove method, the list will treat the method as remove(int index). It will consider the element as index and not actual element.

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/List.html#remove-java.lang.Object-

RELATED ARTICLES

Most Popular

Dominic
32330 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6815 POSTS0 COMMENTS
Ted Musemwa
7078 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6774 POSTS0 COMMENTS