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


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


  • java.util.Vector.addAll(Collection C):此方法用於將作為參數傳遞給此函數的集合中的所有元素附加到向量的末尾,並牢記集合的迭代器返回的順序。

    用法:

    boolean addAll(Collection C)

    參數:該方法接受強製參數C,該參數是ArrayList的集合。它是需要在向量末尾附加其元素的集合。

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


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

    // 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 Vector 
            Vector<String> vt = new Vector<String>(); 
      
            // Use add() method to add elements in the Vector 
            vt.add("Geeks"); 
            vt.add("for"); 
            vt.add("Geeks"); 
            vt.add("10"); 
            vt.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 Vector 
            System.out.println("The Vector is: " + vt); 
      
            // Appending the collection to the vector 
            vt.addAll(c); 
      
            // Clearing the vector using clear() and displaying 
            System.out.println("The new vector is: " + vt); 
        } 
    }
    輸出:
    The Vector is: [Geeks, for, Geeks, 10, 20]
    The new vector is: [Geeks, for, Geeks, 10, 20, A, Computer, Portal, for, Geeks]
    
  • java.util.Vector.addAll(int index,Collection C):此方法用於將集合中作為參數傳遞的所有元素附加到此函數的向量的特定索引或位置。

    用法:

    boolean addAll(int index, Collection C)

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

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

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

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

    // 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 Vector 
            Vector<String> vt = new Vector<String>(); 
      
            // Use add() method to add elements in the Vector 
            vt.add("Geeks"); 
            vt.add("for"); 
            vt.add("Geeks"); 
            vt.add("10"); 
            vt.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 Vector 
            System.out.println("The Vector is: " + vt); 
      
            // Appending the collection to the vector 
            vt.addAll(1, c); 
      
            // Clearing the vector using clear() and displaying 
            System.out.println("The new vector is: " + vt); 
        } 
    }
    輸出:
    The Vector is: [Geeks, for, Geeks, 10, 20]
    The new vector is: [Geeks, A, Computer, Portal, for, Geeks, for, Geeks, 10, 20]
    


相關用法


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