用示例列出Java中的 remove(int index) 方法
Java中List接口的remove(int index)方法用于从List容器中移除指定索引的元素,移除后返回该元素。它还将删除元素之后的元素在列表中向左移动 1 个位置。
语法:
E remove(int index)
Where, E is the type of element maintained
by this List collection
参数:它接受一个整数类型的参数索引,表示需要从列表中删除的元素的索引。
返回值:它在删除后返回给定索引处存在的元素。
下面的程序说明了Java中 List 的 remove(int index) 方法:
程序 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 list = new ArrayList(5);
// Add elements to the list
list.add(5);
list.add(10);
list.add(15);
list.add(20);
list.add(25);
// Index from which you want to remove element
int index = 2;
// Initial list
System.out.println("Initial List: " + list);
// remove element
list.remove(index);
// Final list
System.out.println("Final List: " + list);
}
}
输出:
Initial List: [5, 10, 15, 20, 25]
Final List: [5, 10, 20, 25]
方案二:
// 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 list = new ArrayList(5);
// Add elements to the list
list.add("Welcome");
list.add("to");
list.add("Geeks");
list.add("for");
list.add("Geeks");
// Index from which you want
// to remove element
int index = 2;
// Initial list
System.out.println("Initial List: " + list);
// remove element
list.remove(index);
// Final list
System.out.println("Final List: " + list);
}
}
输出:
Initial List: [Welcome, to, Geeks, for, Geeks]
Final List: [Welcome, to, for, Geeks]
参考:https: Java/util/List.html#remove-int-