當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。