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


Java Vector setElementAt()用法及代碼示例


Java Vector的setElementAt()方法用於將位於此Vector的指定索引處的組件設置為指定對象。該位置上的先前組件將被丟棄。索引必須是一個大於或等於0且小於向量當前大小的值。

用法:

public void setElementAt(E element, int index)

參數:該函數接受兩個參數,如上麵的語法所示,如下所述。


  • element:這是將替換現有元素的新元素,並且具有與vector相同的對象類型。
  • index:這是整數類型,是指要從向量中替換的元素的位置。

返回值:此方法不返回任何內容。

異常:如果索引超出範圍,則此方法將引發ArrayIndexOutOfBoundsException(index = size())

以下示例程序旨在說明Java.util.Vector.setElementAt()方法:

示例1:

// Java code to illustrate setElementAt() 
  
import java.io.*; 
import java.util.*; 
  
public class VectorDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Vector 
        Vector<String> vector 
            = new Vector<String>(); 
  
        // Use add() method to add elements in the vector 
        vector.add("Geeks"); 
        vector.add("for"); 
        vector.add("Geeks"); 
        vector.add("10"); 
        vector.add("20"); 
  
        // Displaying the linkedvector 
        System.out.println("Vector:"
                           + vector); 
  
        // Using setElementAt() method to replace Geeks with GFG 
        vector.setElementAt("GFG", 2); 
        System.out.println("Geeks replaced with GFG"); 
  
        // Displaying the modified linkedvector 
        System.out.println("The new Vector is:"
                           + vector); 
    } 
}
輸出:
Vector:[Geeks, for, Geeks, 10, 20]
Geeks replaced with GFG
The new Vector is:[Geeks, for, GFG, 10, 20]

示例2:演示ArrayIndexOutOfBoundsException

// Java code to illustrate setElementAt() 
  
import java.io.*; 
import java.util.*; 
  
public class VectorDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Vector 
        Vector<String> vector 
            = new Vector<String>(); 
  
        // Use add() method to add elements in the vector 
        vector.add("Geeks"); 
        vector.add("for"); 
        vector.add("Geeks"); 
        vector.add("10"); 
        vector.add("20"); 
  
        // Displaying the linkedvector 
        System.out.println("Vector:"
                           + vector); 
  
        // Using setElementAt() method to replace 10th with GFG 
        // and the 10th element does not exist 
        System.out.println("Trying to replace 10th "
                           + "element with GFG"); 
  
        try { 
            vector.setElementAt("GFG", 10); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
Vector:[Geeks, for, Geeks, 10, 20]
Trying to replace 10th element with GFG
java.lang.ArrayIndexOutOfBoundsException: 10 >= 5


相關用法


注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 Vector setElementAt() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。