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


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


List接口的此方法用於將參數中的指定元素附加到列表的末尾。

用法:

boolean add(E e)

參數:該函數具有單個參數,即e –要添加到此列表的元素。


返回值:如果附加了指定元素並且列表發生更改,則返回true。

下麵的程序顯示了此方法的實現。

示例1:

// Java code to show the implementation of 
// add method in list interface 
import java.util.*; 
public class GfG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        List<Integer> l = new ArrayList<>(); 
        l.add(10); 
        l.add(15); 
        l.add(20); 
        System.out.println(l); 
    } 
}
輸出:
[10, 15, 20]

示例2:以下代碼顯示了使用Linkedlist實現list.add()的代碼。

// Java code to show the implementation of 
// add method in list interface using LinkedList 
import java.util.*; 
public class CollectionsDemo { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        List<Integer> ll = new LinkedList<>(); 
        ll.add(100); 
        ll.add(200); 
        ll.add(300); 
        ll.add(400); 
        ll.add(500); 
  
        System.out.println(ll); 
    } 
}
輸出:
[100, 200, 300, 400, 500]

參考:
Oracle Docs



相關用法


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