📜  用示例列出Java中的 addAll() 方法

📅  最后修改于: 2022-05-13 01:54:29.478000             🧑  作者: Mango

用示例列出Java中的 addAll() 方法

此方法将指定集合中的所有元素附加到此列表的末尾,按照指定集合的迭代器返回它们的顺序。

句法:

boolean addAll(Collection c)

参数:此函数有一个参数,即 Collection c,其元素将被附加到列表中。

返回:如果指定列表的元素被附加并且列表发生变化,则返回true。

下面的程序显示了这种方法的实现。

方案一:

// Java code to show the implementation of
// addAll method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type arraylist
        List l = new ArrayList<>();
        l.add(10);
        l.add(15);
        l.add(20);
        System.out.println(l);
  
        // Initializing a collection to be appended to list
        ArrayList arr = new ArrayList();
        arr.add(100);
        arr.add(200);
        arr.add(300);
        System.out.println(arr);
  
        l.addAll(arr);
  
        System.out.println(l);
    }
}
输出:
[10, 15, 20]
[100, 200, 300]
[10, 15, 20, 100, 200, 300]

程序 2:下面是显示使用 Linkedlist 实现 list.addAll() 的代码。

// Java code to show the implementation of
// addAll method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List l = new LinkedList<>();
        l.add(10);
        l.add(15);
        l.add(20);
        System.out.println(l);
  
        // Initializing a collection to be appended to list
        ArrayList arr = new ArrayList();
        arr.add(100);
        arr.add(200);
        arr.add(300);
        System.out.println(arr);
  
        l.addAll(arr);
  
        System.out.println(l);
    }
}
输出:
[10, 15, 20]
[100, 200, 300]
[10, 15, 20, 100, 200, 300]

参考:
甲骨文文档