Home > Java > Java Tutorial > body text

Remove elements from array list in Java using remove() method of ArrayList class

王林
Release: 2023-07-26 09:04:51
Original
816 people have browsed it

Use the remove() method of the ArrayList class to remove elements from an array list in Java

In Java, ArrayList is a dynamic array that can automatically grow and shrink as needed. It is implemented using generics so it can store any type of object. The ArrayList class provides many methods to operate on array lists, including methods for removing elements. One of the commonly used methods is the remove() method, which can remove elements from an array list based on its index or instance.

First, we need to create an ArrayList object and add some elements to it. The following is a sample code:

import java.util.ArrayList;

public class RemoveElementFromArrayList {
    public static void main(String[] args) {
        // 创建一个ArrayList对象
        ArrayList arrayList = new ArrayList<>();

        // 向数组列表中添加元素
        arrayList.add("元素1");
        arrayList.add("元素2");
        arrayList.add("元素3");
        arrayList.add("元素4");

        // 打印初始的数组列表
        System.out.println("初始的数组列表:" + arrayList);

        // 使用remove()方法根据索引移除元素
        arrayList.remove(2);

        // 打印移除元素后的数组列表
        System.out.println("移除索引为2的元素后的数组列表:" + arrayList);

        // 使用remove()方法根据实例移除元素
        arrayList.remove("元素1");

        // 打印移除实例为"元素1"的元素后的数组列表
        System.out.println("移除实例为"元素1"的元素后的数组列表:" + arrayList);
    }
}
Copy after login

In the above code, we create an ArrayList object and add four elements to it. We then removed the element with index 2 and the element with instance "element 1" using the remove() method. Finally, we print the array list after removing the elements.

When we run the above code, the output will be:

Initial array list: [Element 1, Element 2, Element 3, Element 4]
Remove the one with index 2 Array list after elements: [Element 1, Element 2, Element 4]
Array list after removing the element whose instance is "Element 1": [Element 2, Element 4]

From the output result As can be seen, by using the remove() method, we successfully removed the specified element from the array list.

It should be noted that when using the remove() method to remove an element, if the element does not exist in the array list, the remove() method will have no effect and return false. That's why in the example code above, we later print out the array list to see if the element was successfully removed.

To summarize, using the remove() method of the ArrayList class is a convenient way to remove elements from an array list in Java. The remove() method can accurately and quickly remove elements from an array list, whether based on index or instance.

The above is the detailed content of Remove elements from array list in Java using remove() method of ArrayList class. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!