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


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


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

用法:

public void setElementAt(E element, int index)

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


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

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

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

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

示例1:

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

示例2:演示ArrayIndexOutOfBoundsException

// Java code to illustrate setElementAt() 
  
import java.io.*; 
import java.util.*; 
  
public class StackDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Stack 
        Stack<String> stack 
            = new Stack<String>(); 
  
        // Use add() method to add elements in the stack 
        stack.add("Geeks"); 
        stack.add("for"); 
        stack.add("Geeks"); 
        stack.add("10"); 
        stack.add("20"); 
  
        // Displaying the linkedstack 
        System.out.println("Stack:"
                           + stack); 
  
        // 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 { 
            stack.setElementAt("GFG", 10); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
Stack:[Geeks, for, Geeks, 10, 20]
Trying to replace 10th element with GFG
java.lang.ArrayIndexOutOfBoundsException: 10 >= 5


相關用法


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