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


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


Java.util.Stack.insertElementAt(element,index)方法用於在Stack的指定索引處插入特定元素。元素和位置都作為參數傳遞。如果在指定的索引處插入元素,則所有元素都被向上推一,因此容量增加,從而為新元素創建了空間。

用法:

Stack.insertElementAt()

參數:該方法接受兩個參數:


  • element:這是需要插入堆棧中的元素。
  • index:這是整數類型,是指要插入新元素的位置。

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

異常:如果索引是無效數字,則此方法將引發ArrayIndexOutOfBoundsException。

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

示例1:將String元素添加到Stack中。

// Java code to illustrate insertElementAt() 
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 into the Stack 
        stack.add("Welcome"); 
        stack.add("To"); 
        stack.add("Geeks"); 
        stack.add("4"); 
        stack.add("Geeks"); 
  
        // Displaying the Stack 
        System.out.println("Stack: " + stack); 
  
        // Inseting element at 3rd position 
        stack.insertElementAt("Hello", 2); 
  
        // Inseting element at last position 
        stack.insertElementAt("World", 6); 
  
        // Displaying the final Stack 
        System.out.println("The final Stack is "
                           + stack); 
    } 
}
輸出:
Stack: [Welcome, To, Geeks, 4, Geeks]
The final Stack is [Welcome, To, Hello, Geeks, 4, Geeks, World]

示例2:將Integer元素添加到堆棧中。

// Java code to illustrate insertElementAt() 
import java.util.*; 
  
public class StackDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Stack 
        Stack<Integer> stack = new Stack<Integer>(); 
  
        // Use add() method to add elements into the Stack 
        stack.add(10); 
        stack.add(20); 
        stack.add(30); 
        stack.add(40); 
        stack.add(50); 
  
        // Displaying the Stack 
        System.out.println("Stack: " + stack); 
  
        // Inseting element at 1st position 
        stack.insertElementAt(100, 0); 
  
        // Inseting element at fifth position 
        stack.insertElementAt(200, 4); 
  
        // Displaying the final Stack 
        System.out.println("The final Stack is "
                           + stack); 
    } 
}
輸出:
Stack: [10, 20, 30, 40, 50]
The final Stack is [100, 10, 20, 30, 200, 40, 50]


相關用法


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