队列接口的offer(E e)方法在不违反容量限制的情况下可以立即将指定的元素插入此队列。此方法优于add()方法,因为在容器的容量已满时,此方法不会引发异常,因为它会返回false。
用法:
boolean offer(E e)
参数:此方法接受强制参数e,该参数是要插入队列中的元素。
返回:成功插入时此方法返回true,否则返回false。
异常:该函数引发四个异常,如下所述:
- ClassCastException:当要输入的元素的类阻止将其添加到此容器中时:
- IllegalArgumentException:当元素的某些属性阻止将其添加到队列中时:
- NullPointerException :当要插入的元素作为null传递并且Queue的接口不允许使用null元素时。
以下示例程序旨在说明offer()队列方法:
程序1:借助LinkedBlockingDeque。
// Java Program Demonstrate offer()
// method of Queue
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);
if (Q.offer(10))
System.out.println("The Queue is not full"
+ " and 10 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(15))
System.out.println("The Queue is not full"
+ " and 15 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(25))
System.out.println("The Queue is not full"
+ " and 25 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(20))
System.out.println("The Queue is not full"
+ " and 20 is inserted");
else
System.out.println("The Queue is full");
// before removing print Queue
System.out.println("Queue:" + Q);
}
}
输出:
The Queue is not full and 10 is inserted The Queue is not full and 15 is inserted The Queue is not full and 25 is inserted The Queue is full Queue:[10, 15, 25]
程序2:借助ConcurrentLinkedDeque。
// Java Program Demonstrate offer()
// 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>();
if (Q.offer(10))
System.out.println("The Queue is not full"
+ " and 10 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(15))
System.out.println("The Queue is not full"
+ " and 15 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(25))
System.out.println("The Queue is not full"
+ " and 25 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(20))
System.out.println("The Queue is not full"
+ " and 20 is inserted");
else
System.out.println("The Queue is full");
// before removing print Queue
System.out.println("Queue:" + Q);
}
}
输出:
The Queue is not full and 10 is inserted The Queue is not full and 15 is inserted The Queue is not full and 25 is inserted The Queue is not full and 20 is inserted Queue:[10, 15, 25, 20]
程序3:借助ArrayDeque。
// Java Program Demonstrate offer()
// 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>(6);
if (Q.offer(10))
System.out.println("The Queue is not full"
+ " and 10 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(15))
System.out.println("The Queue is not full"
+ " and 15 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(25))
System.out.println("The Queue is not full"
+ " and 25 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(20))
System.out.println("The Queue is not full"
+ " and 20 is inserted");
else
System.out.println("The Queue is full");
// before removing print Queue
System.out.println("Queue:" + Q);
}
}
输出:
The Queue is not full and 10 is inserted The Queue is not full and 15 is inserted The Queue is not full and 25 is inserted The Queue is not full and 20 is inserted Queue:[10, 15, 25, 20]
程序4:借助LinkedList。
// Java Program Demonstrate offer()
// 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>();
if (Q.offer(10))
System.out.println("The Queue is not full"
+ " and 10 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(15))
System.out.println("The Queue is not full"
+ " and 15 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(25))
System.out.println("The Queue is not full"
+ " and 25 is inserted");
else
System.out.println("The Queue is full");
if (Q.offer(20))
System.out.println("The Queue is not full"
+ " and 20 is inserted");
else
System.out.println("The Queue is full");
// before removing print Queue
System.out.println("Queue:" + Q);
}
}
输出:
The Queue is not full and 10 is inserted The Queue is not full and 15 is inserted The Queue is not full and 25 is inserted The Queue is not full and 20 is inserted Queue:[10, 15, 25, 20]
以下示例程序旨在说明此方法引发的异常:
程序5:显示NullPointerException。
// Java Program Demonstrate offer()
// 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 NullPointerException
{
// create object of Queue
Queue<Integer> Q
= new LinkedBlockingQueue<Integer>();
// Add numbers to end of Deque
Q.offer(7855642);
Q.offer(35658786);
Q.offer(5278367);
try {
// when null is inserted
Q.offer(null);
}
catch (Exception e) {
System.out.println("Exception:" + e);
}
}
}
输出:
Exception:java.lang.NullPointerException
注意:其他两个异常是内部的,它们是由编译器引起的,因此无法在代码中显示。
参考: https://docs.oracle.com/javase/8/docs/api/java/util/Queue.html#offer-E-
相关用法
- Java LinkedTransferQueue offer()用法及代码示例
- Java ArrayDeque offer()用法及代码示例
- Java PriorityQueue offer()用法及代码示例
- Java ArrayBlockingQueue offer()用法及代码示例
- Java LinkedBlockingDeque offer()用法及代码示例
- Java PriorityBlockingQueue offer()用法及代码示例
- Java Deque offer()用法及代码示例
- Java ConcurrentLinkedQueue offer()用法及代码示例
- Java ConcurrentLinkedDeque offer()用法及代码示例
- Java DelayQueue offer()用法及代码示例
- Java BlockingQueue offer()用法及代码示例
- Java BlockingDeque offer()用法及代码示例
- Java Queue remove()用法及代码示例
- Java Queue add()用法及代码示例
- Java Queue poll()用法及代码示例
- Java Queue peek()用法及代码示例
- Java Queue element()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Queue offer() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。