public class PriorityQueue<E> extends AbstractQueue<E> implements Serializable
The least element of the specified ordering is the first retrieved with
poll() and the greatest element is the last.
A PriorityQueue is not synchronized. If multiple threads will have to access
it concurrently, use the PriorityBlockingQueue.
| Constructor and Description |
|---|
PriorityQueue()
Constructs a priority queue with an initial capacity of 11 and natural
ordering.
|
PriorityQueue(Collection<? extends E> c)
Constructs a priority queue that contains the elements of a collection.
|
PriorityQueue(int initialCapacity)
Constructs a priority queue with the specified capacity and natural
ordering.
|
PriorityQueue(int initialCapacity,
Comparator<? super E> comparator)
Constructs a priority queue with the specified capacity and comparator.
|
PriorityQueue(PriorityQueue<? extends E> c)
Constructs a priority queue that contains the elements of another
priority queue.
|
PriorityQueue(SortedSet<? extends E> c)
Constructs a priority queue that contains the elements of a sorted set.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E o)
Adds the specified object to the priority queue.
|
void |
clear()
Removes all the elements of the priority queue.
|
Comparator<? super E> |
comparator()
Gets the comparator of the priority queue.
|
Iterator<E> |
iterator()
Gets the iterator of the priority queue, which will not return elements
in any specified ordering.
|
boolean |
offer(E o)
Inserts the element to the priority queue.
|
E |
peek()
Gets but does not remove the head of the queue.
|
E |
poll()
Gets and removes the head of the queue.
|
boolean |
remove(Object o)
Removes the specified object from the priority queue.
|
int |
size()
Gets the size of the priority queue.
|
addAll, element, removecontains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitcontains, containsAll, equals, forEach, hashCode, isEmpty, parallelStream, removeAll, removeIf, retainAll, spliterator, stream, toArray, toArray, toArraypublic PriorityQueue()
public PriorityQueue(int initialCapacity)
initialCapacity - the specified capacity.IllegalArgumentException - if the initialCapacity is less than 1.public PriorityQueue(int initialCapacity,
Comparator<? super E> comparator)
initialCapacity - the specified capacity.comparator - the specified comparator. If it is null, the natural ordering
will be used.IllegalArgumentException - if the initialCapacity is less than 1.public PriorityQueue(Collection<? extends E> c)
c - the collection whose elements will be added to the priority
queue to be constructed.ClassCastException - if any of the elements in the collection are not comparable.NullPointerException - if any of the elements in the collection are null.public PriorityQueue(PriorityQueue<? extends E> c)
c - the priority queue whose elements will be added to the
priority queue to be constructed.public PriorityQueue(SortedSet<? extends E> c)
c - the sorted set whose elements will be added to the priority
queue to be constructed.public Iterator<E> iterator()
iterator in interface Iterable<E>iterator in interface Collection<E>iterator in class AbstractCollection<E>public int size()
size in interface Collection<E>size in class AbstractCollection<E>public void clear()
clear in interface Collection<E>clear in class AbstractQueue<E>AbstractCollection.iterator(),
AbstractCollection.isEmpty(),
AbstractCollection.size()public boolean offer(E o)
offer in interface Queue<E>o - the element to add to the priority queue.ClassCastException - if the element cannot be compared with the elements in the
priority queue using the ordering of the priority queue.NullPointerException - if o is null.public E poll()
public E peek()
public Comparator<? super E> comparator()
public boolean remove(Object o)
remove in interface Collection<E>remove in class AbstractCollection<E>o - the object to be removed.public boolean add(E o)
add in interface Collection<E>add in interface Queue<E>add in class AbstractQueue<E>o - the object to be added.ClassCastException - if the element cannot be compared with the elements in the
priority queue using the ordering of the priority queue.NullPointerException - if o is null.