.remove()
Published Mar 21, 2022
Contribute to Docs
The .remove()
method is used for removing specified elements from instances of the ArrayList
class.
Syntax
An element can be removed from an ArrayList
instance by being passed to the .remove()
method. It can be referenced either by value or index:
arrayListInstance.remove(element);
Example
In the example below, an empty ArrayList
instance studentList
is created and can hold String
-type elements. Next, a few elements are added with the .add()
method. Lastly, two students are removed from the ArrayList
with .remove()
:
import java.util.ArrayList;public class Students {public static void main(String[] args) {ArrayList<String> studentList = new ArrayList<String>();studentList.add("John");studentList.add("Lily");studentList.add("Samantha");studentList.add("Tony");// Remove John via index, then Lily via valuestudentList.remove(0);studentList.remove("Lily");System.out.println(studentList);}}
The studentList
output should look like this:
[Samantha, Tony]
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.