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


Java Vector removeElementAt()用法及代码示例


java.util.vector.removeElementAt(int index)方法用于从特定位置或索引的Vector中删除元素。在此过程中,在将移除的元素向下移动一个位置之后,矢量的大小会自动减小一个,而所有其他元素都会自动减小。

用法:

Vector.removeElementAt(int index)

参数:此方法接受整数数据类型的强制参数索引,该索引指定要从Vector中删除的元素的位置。


返回值:此方法具有void返回类型。这意味着它不返回任何东西。

以下示例程序旨在说明Java.util.Vector.remove(int index)方法:

// Java code to illustrate removeElementAt() 
import java.util.*; 
  
public class VectorDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating an empty Vector 
        Vector<String> vec_tor = new Vector<String>(); 
  
        // Use add() method to add elements in the Vector 
        vec_tor.add("Geeks"); 
        vec_tor.add("for"); 
        vec_tor.add("Geeks"); 
        vec_tor.add("10"); 
        vec_tor.add("20"); 
  
        // Output the Vector 
        System.out.println("Vector: " + vec_tor); 
  
        // Initial size 
        System.out.println("The initial size is: " + vec_tor.size()); 
  
        // Remove the element at 3rd position 
        vec_tor.removeElementAt(2); 
          
        // Print the final Vector 
        System.out.println("Final Vector: " + vec_tor); 
  
        // Final size 
        System.out.println("The final size is: " + vec_tor.size()); 
    } 
}
输出:
Vector: [Geeks, for, Geeks, 10, 20]
The initial size is: 5
Final Vector: [Geeks, for, 10, 20]
The final size is: 4


相关用法


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