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


Java Stack addAll(int, Collection)用法及代碼示例


堆棧類的addAll(int,Collection)方法用於將作為參數傳遞的集合中的所有元素附加到此函數的特定索引或堆棧位置處。

用法:

boolean addAll(int index, Collection C)

參數:此函數接受上麵語法中所示的兩個參數,並在下麵進行描述。


  • index:此參數為整數數據類型,並指定從插入容器元素開始的堆棧中的位置。
  • C:這是ArrayList的集合。這是需要附加其元素的集合。

返回值:如果至少執行了一個附加操作,則該方法返回True,否則返回False。

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

範例1:

// Java code to illustrate boolean addAll() 
  
import java.util.*; 
import java.util.ArrayList; 
  
public class GFG { 
    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"); 
  
        // A collection is created 
        Collection<String> c = new ArrayList<String>(); 
        c.add("A"); 
        c.add("Computer"); 
        c.add("Portal"); 
        c.add("for"); 
        c.add("Geeks"); 
  
        // Displaying the Stack 
        System.out.println("The Stack is:" + stack); 
  
        // Appending the collection to the Stack 
        stack.addAll(1, c); 
  
        // Clearing the Stack using clear() and displaying 
        System.out.println("The new Stack is:" + stack); 
    } 
}
輸出:
The Stack is:[Geeks, for, Geeks, 10, 20]
The new Stack is:[Geeks, A, Computer, Portal, for, Geeks, for, Geeks, 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); 
  
        // A collection is created 
        Collection<Integer> c = new ArrayList<Integer>(); 
        c.add(1); 
        c.add(2); 
        c.add(3); 
  
        // Displaying the Stack 
        System.out.println("The Stack is:" + stack); 
  
        // Appending the collection to the Stack 
        stack.addAll(2, c); 
  
        // Clearing the Stack using clear() and displaying 
        System.out.println("The new Stack is:" + stack); 
    } 
}
輸出:
The Stack is:[10, 20, 30, 40, 50]
The new Stack is:[10, 20, 1, 2, 3, 30, 40, 50]


相關用法


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