当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java List 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<Integer> list = new ArrayList<Integer>(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]

程序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"); 
  
        // 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://docs.oracle.com/javase/8/docs/api/java/util/List.html#remove-int-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 List remove(int index) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。