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


Java LinkedList add()用法及代碼示例


  1. 布爾添加(對象元素):此方法將指定的元素附加到此列表的末尾。
    用法:
    boolean add(Object element)

    參數:此函數接受單個參數element ,如上麵的語法所示。此參數指定的元素將附加到列表的末尾。

    返回值:執行後此方法返回True。


    例:

    // Java code to illustrate boolean add(Object element) 
    import java.io.*; 
    import java.util.LinkedList; 
      
    public class LinkedListDemo { 
       public static void main(String args[]) { 
      
          // creating an empty LinkedList 
          LinkedList list = new LinkedList(); 
      
          // use add() method to add elements in the list 
          list.add("Geeks"); 
          list.add("for"); 
          list.add("Geeks"); 
          list.add("10"); 
          list.add("20"); 
      
          // Output the present list 
          System.out.println("The list is:" + list); 
      
          // Adding new elements to the end 
          list.add("Last"); 
          list.add("Element"); 
      
          // printing the new list 
          System.out.println("The new List is:" + list); 
       } 
    }

    輸出:

    The list is:[Geeks, for, Geeks, 10, 20]
    The new List is:[Geeks, for, Geeks, 10, 20, Last, Element]
    
  2. void add(int index,Object element):此方法在列表中的指定索引處插入元素。它將當前位於該位置的元素(如果有)和任何後續元素右移(將在其索引處增加一個)。

    用法:

    void add(int index, Object element)

    參數:該方法接受兩個參數,如下所述。

    • index:要插入指定元素的索引。
    • element:需要插入的元素。

    返回值:此方法不返回任何值。

    異常:

    Throws IndexOutOfBoundsException if the specified
    index is out of range (index  size()).
    

    例:

    // Java code to illustrate boolean add(Object element) 
    import java.io.*; 
    import java.util.LinkedList; 
      
    public class LinkedListDemo { 
       public static void main(String args[]) { 
      
          // creating an empty LinkedList 
          LinkedList list = new LinkedList(); 
      
          // use add() method to add elements in the list 
          list.add("Geeks"); 
          list.add("for"); 
          list.add("Geeks"); 
          list.add("10"); 
          list.add("20"); 
      
          // Output the present list 
          System.out.println("The list is:" + list); 
      
          // Adding new elements to the end 
          list.add(2, "Hello"); 
          list.add(4, "End"); 
      
          // printing the new list 
          System.out.println("The new List is:" + list); 
       } 
    }

    輸出:

    The list is:[Geeks, for, Geeks, 10, 20]
    The new List is:[Geeks, for, Hello, Geeks, End, 10, 20]
    


相關用法


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