当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java LinkedList addAll()用法及代码示例


  1. java.util.LinkedList.addAll(Collection C):此方法用于将作为参数传递给此函数的集合中的所有元素追加到列表的末尾,同时牢记集合迭代器返回的顺序。

    用法:

    boolean addAll(Collection C)

    参数:参数C是ArrayList的集合。它是需要在列表末尾添加其元素的集合。


    返回值:如果执行了至少一项附加操作,则该方法返回true。

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

    // Java code to illustrate boolean addAll() 
    import java.util.*; 
    import java.util.LinkedList; 
    import java.util.ArrayList; 
      
    public class LinkedListDemo { 
       public static void main(String args[]) { 
      
          // Creating an empty LinkedList 
          LinkedList<String> list = new LinkedList<String>(); 
      
          // Use add() method to add elements in the list 
          list.add("Geeks"); 
          list.add("for"); 
          list.add("Geeks"); 
          list.add("10"); 
          list.add("20"); 
            
          // A collection is created 
          Collection<String> collect = new ArrayList<String>(); 
          collect.add("A"); 
          collect.add("Computer"); 
          collect.add("Portal"); 
          collect.add("for"); 
          collect.add("Geeks"); 
      
          // Displaying the list 
          System.out.println("The LinkedList is: " + list); 
                  
          // Appending the collection to the list 
          list.addAll(collect); 
      
         // Clearing the list using clear() and displaying 
         System.out.println("The new linked list is: " + list); 
      
       } 
    }
    输出:
    The LinkedList is: [Geeks, for, Geeks, 10, 20]
    The new linked list is: [Geeks, for, Geeks, 10, 20, A, Computer, Portal, for, Geeks]
    
  2. java.util.LinkedList.addAll(int index, Collection C):此方法用于将作为参数传递的集合中的所有元素附加到此函数的列表的特定索引或位置。

    用法:

    boolean addAll(int index, Collection C)

    参数:此函数接受上面语法中所示的两个参数,并在下面进行描述。

    • index:此参数为整数数据类型,并指定列表在列表中的位置,从该位置开始插入容器中的元素。
    • C:它是ArrayList的集合。这是需要附加其元素的集合。

    返回值:如果至少执行了一个附加动作,则该方法返回TRUE。

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

    // Java code to illustrate boolean addAll() 
    import java.util.*; 
    import java.util.LinkedList; 
    import java.util.ArrayList; 
      
    public class LinkedListDemo { 
       public static void main(String args[]) { 
      
          // Creating an empty LinkedList 
          LinkedList<String> list = new LinkedList<String>(); 
      
          // Use add() method to add elements in the list 
          list.add("Geeks"); 
          list.add("for"); 
          list.add("Geeks"); 
          list.add("10"); 
          list.add("20"); 
            
          // Creating a Collection 
          Collection<String> collect = new ArrayList<String>(); 
          collect.add("A"); 
          collect.add("Computer"); 
          collect.add("Portal"); 
          collect.add("for"); 
          collect.add("Geeks"); 
      
          // Displaying the list 
          System.out.println("The LinkedList is: " + list); 
                  
          // Appending the collection to the list 
          list.addAll(1, collect); 
      
         // Clearing the list using clear() and displaying 
         System.out.println("The new linked list is: " + list); 
      
       } 
    }
    输出:
    The LinkedList is: [Geeks, for, Geeks, 10, 20]
    The new linked list is: [Geeks, A, Computer, Portal, for, Geeks, for, Geeks, 10, 20]
    


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 LinkedList addAll() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。