如果有空间,队列接口的add(E e)方法会将在参数中传递的元素插入队列的末尾。如果Queue受容量限制并且没有剩余空间可插入,则返回IllegalStateException。成功插入后,该函数返回true。
用法:
boolean add(E e)
参数:此方法接受强制参数e,该参数是要插入队列末尾的元素。
返回:成功插入后,此方法返回true。
异常:该函数引发四个异常,如下所述:
- ClassCastException:当要输入的元素的类阻止将其添加到此容器中时:
- IllegalStateException:当容器的容量已满并且已插入时。
- IllegalArgumentException:当元素的某些属性阻止将其添加到队列中时:
- NullPointerException :当要插入的元素作为null传递并且Queue的接口不允许使用null元素时。
以下示例程序旨在说明add()队列方法:
程序1:借助LinkedList。
// Java Program Demonstrate add()
// method of Queue
import java.util.*;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new LinkedList<Integer>();
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
Q.add(74381793);
// before removing print queue
System.out.println("Queue:" + Q);
}
}
输出:
Queue:[7855642, 35658786, 5278367, 74381793]
程序2:借助ArrayDeque。
// Java Program Demonstrate add()
// method of Queue
import java.util.*;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new ArrayDeque<Integer>();
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
Q.add(74381793);
// before removing print queue
System.out.println("Queue:" + Q);
}
}
输出:
Queue:[7855642, 35658786, 5278367, 74381793]
程序3:借助LinkedBlockingDeque。
// Java Program Demonstrate add()
// method of Queue
import java.util.*;
import java.util.concurrent.LinkedBlockingDeque;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new LinkedBlockingDeque<Integer>();
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
Q.add(74381793);
// before removing print queue
System.out.println("Queue:" + Q);
}
}
输出:
Queue:[7855642, 35658786, 5278367, 74381793]
程序4:借助ConcurrentLinkedDeque。
// Java Program Demonstrate add()
// method of Queue
import java.util.*;
import java.util.concurrent.ConcurrentLinkedDeque;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new ConcurrentLinkedDeque<Integer>();
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
Q.add(74381793);
// before removing print queue
System.out.println("Queue:" + Q);
}
}
输出:
Queue:[7855642, 35658786, 5278367, 74381793]
以下示例程序旨在说明此方法引发的异常:
程序5:显示NullPointerException。
// Java Program Demonstrate add()
// method of Queue when Null is passed
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new LinkedBlockingQueue<Integer>();
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
try {
// when null is inserted
Q.add(null);
}
catch (Exception e) {
System.out.println("Exception:" + e);
}
}
}
输出:
Exception:java.lang.NullPointerException
程序6:显示IllegalStateException。
// Java Program Demonstrate add()
// method of Queue when capacity is full
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
public class GFG {
public static void main(String[] args)
throws IllegalStateException
{
// create object of Queue
Queue<Integer> Q
= new LinkedBlockingQueue<Integer>(3);
// Add numbers to end of Queue
Q.add(7855642);
Q.add(35658786);
Q.add(5278367);
try {
// when capacity is full
Q.add(10);
}
catch (Exception e) {
System.out.println("Exception:" + e);
}
}
}
输出:
Exception:java.lang.IllegalStateException:Queue full
注意:其他两个异常是内部的,它们是由编译器引起的,因此无法在编译器中显示。
参考: https://docs.oracle.com/javase/8/docs/api/java/util/Queue.html#add-E-
相关用法
- Java Queue remove()用法及代码示例
- Java Queue poll()用法及代码示例
- Java Queue peek()用法及代码示例
- Java Queue element()用法及代码示例
- Java Queue offer()用法及代码示例
- Java Java.util.ArrayList.add()用法及代码示例
- Java DelayQueue add()用法及代码示例
- Java ArrayBlockingQueue add()用法及代码示例
- Java LinkedList add()用法及代码示例
- Java HashSet add()用法及代码示例
- Java TreeSet add()用法及代码示例
- Java PriorityQueue add()用法及代码示例
- Java ArrayDeque add()用法及代码示例
- Java LinkedBlockingDeque add()用法及代码示例
- Java GregorianCalendar add()用法及代码示例
- Java Vector add()用法及代码示例
- Java Stream.Builder add()用法及代码示例
- Java IntStream.Builder add()用法及代码示例
- Java PriorityBlockingQueue add()用法及代码示例
- Java StringJoiner add()用法及代码示例
- Java LinkedTransferQueue add()用法及代码示例
- Java ConcurrentSkipListSet add()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Queue add() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。