位置:首页 > Java技术 > Java.util包 > java.util.LinkedList.addAll()方法实例

java.util.LinkedList.addAll()方法实例

java.util.LinkedList.addAll(Collection<? extends E> c) 方法会将所有指定集合中的元素添加到此列表的结尾,因为它们是由指定collection的迭代器返回的顺序。

声明

以下是java.util.LinkedList.addAll()方法的声明

public boolean addAll(Collection<? extends E> c)

参数

  • c -- 集合包含要添加到此列表中的元素

返回值

如果此列表由于调用而更改的结果,此方法返回true

异常

  • NullPointerException -- 如果指定collection为null

例子

下面的示例演示java.util.LinkedList.addAll()方法的用法。

package com.yiibai;

import java.util.*;

public class LinkedListDemo {

   public static void main(String[] args) {

      // create a LinkedList
      LinkedList list = new LinkedList();

      // add some elements
      list.add("Hello");
      list.add(2);
      list.add("Chocolate");
      list.add("10");

      // print the list
      System.out.println("LinkedList:" + list);


      // create a new collection and add some elements
      Collection collection = new ArrayList();
      collection.add("One");
      collection.add("Two");
      collection.add("Three");

      // append the collection in the LinkedList
      list.addAll(collection);

      // print the new list
      System.out.println("LinkedList:" + list);
   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

LinkedList:[Hello, 2, Chocolate, 10]
LinkedList:[Hello, 2, Chocolate, 10, One, Two, Three]