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


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


java.util.Collection接口的add(E元素)用於將元素“ element”添加到此集合中。此方法返回一個表示操作成功的布爾值。如果添加了元素,則返回true,否則返回false。

用法:

Collection.add(E element)

參數:此方法接受類型E的強製參數element ,該元素將添加到此集合中。


返回值:此方法返回一個表示操作成功的布爾值。如果添加了元素,則返回true,否則返回false。

異常:此方法引發以下異常:

  • UnsupportedOperationException:如果此集合不支持添加操作
  • ClassCastException:如果指定元素的類阻止將其添加到此集合中
  • NullPointerException :如果指定的元素為null,並且此集合不允許使用null元素
  • IllegalArgumentException:如果元素的某些屬性阻止將其添加到此集合中
  • IllegalStateException:如果由於插入限製當前無法添加該元素

以下示例說明了Collection add()方法:

示例1:使用LinkedList類

// Java code to illustrate boolean add() method 
  
import java.io.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
        // creating an empty LinkedList 
        Collection<String> list = new LinkedList<String>(); 
  
        // use add() method to add elements in the list 
        list.add("Geeks"); 
        list.add("for"); 
        list.add("Geeks"); 
  
        // 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]
The new List is: [Geeks, for, Geeks, Last, Element]

示例2:使用ArrayDeque類

// Java code to illustrate add() method 
  
import java.util.*; 
  
public class ArrayDequeDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty ArrayDeque 
        Collection<String> de_que = new ArrayDeque<String>(); 
  
        // Use add() method to add elements into the Deque 
        de_que.add("Welcome"); 
        de_que.add("To"); 
        de_que.add("Geeks"); 
        de_que.add("4"); 
        de_que.add("Geeks"); 
  
        // Displaying the ArrayDeque 
        System.out.println("ArrayDeque: " + de_que); 
    } 
}
輸出:
ArrayDeque: [Welcome, To, Geeks, 4, Geeks]

示例3:使用ArrayList類

// Java code to illustrate add() method 
  
import java.io.*; 
import java.util.*; 
  
public class ArrayListDemo { 
    public static void main(String[] args) 
    { 
  
        // create an empty array list with an initial capacity 
        Collection<Integer> arrlist = new ArrayList<Integer>(5); 
  
        // use add() method to add elements in the list 
        arrlist.add(15); 
        arrlist.add(20); 
        arrlist.add(25); 
  
        // prints all the elements available in list 
        for (Integer number : arrlist) { 
            System.out.println("Number = " + number); 
        } 
    } 
}
輸出:
Number = 15
Number = 20
Number = 25

示例4:演示NullPointer異常

// Java code to illustrate boolean add() 
  
import java.util.*; 
  
public class LinkedListDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating an empty ArrayList 
        Collection<String> 
            list = new ArrayList<String>(); 
  
        // Displaying the list 
        System.out.println("The ArrayList is: " + list); 
  
        try { 
            // Appending the null to the list 
            list.add(null); 
        } 
        catch (Exception e) { 
            System.out.println("Exception: " + e); 
        } 
    } 
}
輸出:
The ArrayList is: []

參考: https://docs.oracle.com/javase/9/docs/api/java/util/Collection.html#add-E-



相關用法


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