Java中的java.util.PriorityQueue.poll()方法用于检索或获取并删除Queue的第一个元素或出现在Queue头的元素。 peek()方法仅检索头部的元素,但poll()也会随着检索而删除该元素。如果队列为空,则返回NULL。
用法:
Priority_Queue.poll()
参数:该方法不带任何参数。
返回值:该方法返回Queue开头的元素,如果Queue为空,则返回NULL。
以下程序说明了java.util.PriorityQueue.poll()方法的使用:
示例1:
// Java code to illustrate poll()
import java.util.*;
public class PriorityQueueDemo {
public static void main(String args[])
{
// Creating an empty PriorityQueue
PriorityQueue<String> queue = new PriorityQueue<String>();
// Use add() method to add elements into the Queue
queue.add("Welcome");
queue.add("To");
queue.add("Geeks");
queue.add("For");
queue.add("Geeks");
// Displaying the PriorityQueue
System.out.println("Initial PriorityQueue: " + queue);
// Fetching and removing the element at the head of the queue
System.out.println("The element at the head of the"
+ " queue is: " + queue.poll());
// Displaying the Queue after the Operation
System.out.println("Final PriorityQueue: " + queue);
}
}
输出:
Initial PriorityQueue: [For, Geeks, To, Welcome, Geeks] The element at the head of the queue is: For Final PriorityQueue: [Geeks, Geeks, To, Welcome]
示例2:
// Java code to illustrate poll()
import java.util.*;
public class PriorityQueueDemo {
public static void main(String args[])
{
// Creating an empty PriorityQueue
PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
// Use add() method to add elements into the Queue
queue.add(10);
queue.add(15);
queue.add(30);
queue.add(20);
queue.add(5);
// Displaying the PriorityQueue
System.out.println("Initial PriorityQueue: " + queue);
// Fetching the element at the head of the queue
System.out.println("The element at the head of the"
+ " queue is: " + queue.poll());
// Displaying the Queue after the Operation
System.out.println("Final PriorityQueue: " + queue);
}
}
输出:
Initial PriorityQueue: [5, 10, 30, 20, 15] The element at the head of the queue is: 5 Final PriorityQueue: [10, 15, 30, 20]
相关用法
- Java ArrayDeque poll()用法及代码示例
- Java LinkedBlockingQueue poll()用法及代码示例
- Java ArrayBlockingQueue poll()用法及代码示例
- Java PriorityBlockingQueue poll()用法及代码示例
- Java LinkedTransferQueue poll()用法及代码示例
- Java ConcurrentLinkedDeque poll()用法及代码示例
- Java Queue poll()用法及代码示例
- Java ConcurrentLinkedQueue poll()用法及代码示例
- Java LinkedBlockingDeque poll()用法及代码示例
- Java DelayQueue poll()用法及代码示例
- Java BlockingQueue poll()用法及代码示例
- Java BlockingDeque poll()用法及代码示例
- Java PriorityQueue contains()用法及代码示例
- Java PriorityQueue add()用法及代码示例
- Java PriorityQueue toArray()用法及代码示例
注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 PriorityQueue poll() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。