- 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]
相关用法
- Java Set addAll()用法及代码示例
- Java ConcurrentLinkedQueue addAll()用法及代码示例
- Java LinkedList addAll()用法及代码示例
- Java TreeSet addAll()用法及代码示例
- Java ArrayDeque addAll()用法及代码示例
- Java NavigableSet addAll()用法及代码示例
- Java LinkedBlockingDeque addAll()用法及代码示例
- Java Stack addAll(Collection)用法及代码示例
- Java CopyOnWriteArraySet addAll()用法及代码示例
- Java Stack addAll(int, Collection)用法及代码示例
- Java AbstractSequentialList addAll()用法及代码示例
- Java AbstractQueue addAll()用法及代码示例
- Java SortedSet addAll()用法及代码示例
- Java List addAll()用法及代码示例
- Java ConcurrentLinkedDeque addAll()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 Vector addAll() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。