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-
相关用法
- Java Collection contains()用法及代码示例
- Java Collection clear()用法及代码示例
- Java Collection isEmpty()用法及代码示例
- Java Collection addAll()用法及代码示例
- Java Stack addAll(int, Collection)用法及代码示例
- Java Stack addAll(Collection)用法及代码示例
- Java Iterable转Collection用法及代码示例
注:本文由纯净天空筛选整理自RishabhPrabhu大神的英文原创作品 Collection add() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。