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


Java Stack add(int, Object)用法及代碼示例


Stack Class的add(int,Object)方法將元素插入到Stack中的指定索引處。它將當前位於該位置的元素(如果有)和任何後續元素右移(將通過添加一個來更改其索引)。

用法:

void add(int index, Object element)

參數:該方法接受兩個參數,如下所述。


  • index:要插入指定元素的索引。
  • element:需要插入的元素。

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

異常:如果指定的索引超出堆棧的大小範圍,則該方法將引發IndexOutOfBoundsException。

以下示例程序旨在說明java.util.Stack.add(int index,Object element)方法的用法:

例:

// Java code to illustrate boolean add(Object element) 
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"); 
  
        // Output the present Stack 
        System.out.println("The Stack is:" + stack); 
  
        // Adding new elements 
        stack.add(2, "Last"); 
        stack.add(4, "Element"); 
  
        // Printing the new Stack 
        System.out.println("The new Stack is:" + stack); 
    } 
}
輸出:
The Stack is:[Geeks, for, Geeks, 10, 20]
The new Stack is:[Geeks, for, Last, Geeks, Element, 10, 20]

範例2:

// Java code to illustrate 
// boolean add(Object element) 
  
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 in the Stack 
        stack.add(10); 
        stack.add(20); 
        stack.add(30); 
        stack.add(40); 
        stack.add(50); 
  
        // Output the present Stack 
        System.out.println("The Stack is:"
                           + stack); 
  
        // Adding new elements 
        stack.add(0, 100); 
        stack.add(3, 200); 
  
        // Printing the new Stack 
        System.out.println("The new Stack is:"
                           + stack); 
    } 
}
輸出:
The Stack is:[10, 20, 30, 40, 50]
The new Stack is:[100, 10, 20, 200, 30, 40, 50]


相關用法


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