Class ConcurrentLinkedDeque<E>
- Type Parameters:
E- the type of elements held in this collection
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,Deque<E>,Queue<E>
public class ConcurrentLinkedDeque<E> extends AbstractCollection<E> implements Deque<E>, Serializable
ConcurrentLinkedDeque is an appropriate choice when
many threads will share access to a common collection.
Like most other concurrent collection implementations, this class
does not permit the use of null elements.
Iterators are weakly consistent, returning elements
reflecting the state of the deque at some point at or since the
creation of the iterator. They do not throw ConcurrentModificationException, and may proceed concurrently with
other operations.
Beware that, unlike in most collections, the size method
is NOT a constant-time operation. Because of the
asynchronous nature of these deques, determining the current number
of elements requires a traversal of the elements, and so may report
inaccurate results if this collection is modified during traversal.
Additionally, the bulk operations addAll,
removeAll, retainAll, containsAll,
equals, and toArray are not guaranteed
to be performed atomically. For example, an iterator operating
concurrently with an addAll operation might view only some
of the added elements.
This class and its iterator implement all of the optional
methods of the Deque and Iterator interfaces.
Memory consistency effects: As with other concurrent collections,
actions in a thread prior to placing an object into a
ConcurrentLinkedDeque
happen-before
actions subsequent to the access or removal of that element from
the ConcurrentLinkedDeque in another thread.
- Since:
- 1.7
- Author:
- Doug Lea, Martin Buchholz
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ConcurrentLinkedDeque()Constructs an empty deque.ConcurrentLinkedDeque(Collection<? extends E> c)Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator. -
Method Summary
Modifier and Type Method Description booleanadd(E e)Inserts the specified element at the tail of this deque.booleanaddAll(Collection<? extends E> c)Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator.voidaddFirst(E e)Inserts the specified element at the front of this deque.voidaddLast(E e)Inserts the specified element at the end of this deque.voidclear()Removes all of the elements from this deque.booleancontains(Object o)Returnstrueif this deque contains at least one elementesuch thato.equals(e).Iterator<E>descendingIterator()Returns an iterator over the elements in this deque in reverse sequential order.Eelement()Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque).EgetFirst()Retrieves, but does not remove, the first element of this deque.EgetLast()Retrieves, but does not remove, the last element of this deque.booleanisEmpty()Returnstrueif this collection contains no elements.Iterator<E>iterator()Returns an iterator over the elements in this deque in proper sequence.booleanoffer(E e)Inserts the specified element at the tail of this deque.booleanofferFirst(E e)Inserts the specified element at the front of this deque.booleanofferLast(E e)Inserts the specified element at the end of this deque.Epeek()Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty.EpeekFirst()Retrieves, but does not remove, the first element of this deque, or returns null if this deque is empty.EpeekLast()Retrieves, but does not remove, the last element of this deque, or returns null if this deque is empty.Epoll()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty.EpollFirst()Retrieves and removes the first element of this deque, or returns null if this deque is empty.EpollLast()Retrieves and removes the last element of this deque, or returns null if this deque is empty.Epop()Pops an element from the stack represented by this deque.voidpush(E e)Pushes an element onto the stack represented by this deque (in other words, at the head of this deque) if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.Eremove()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque).booleanremove(Object o)Removes the first elementesuch thato.equals(e), if such an element exists in this deque.EremoveFirst()Retrieves and removes the first element of this deque.booleanremoveFirstOccurrence(Object o)Removes the first elementesuch thato.equals(e), if such an element exists in this deque.EremoveLast()Retrieves and removes the last element of this deque.booleanremoveLastOccurrence(Object o)Removes the last elementesuch thato.equals(e), if such an element exists in this deque.intsize()Returns the number of elements in this deque.Object[]toArray()Returns an array containing all of the elements in this deque, in proper sequence (from first to last element).<T> T[]toArray(T[] a)Returns an array containing all of the elements in this deque, in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.Methods inherited from class java.util.AbstractCollection
containsAll, removeAll, retainAll, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
containsAll, equals, hashCode, removeAll, retainAll
-
Constructor Details
-
ConcurrentLinkedDeque
public ConcurrentLinkedDeque()Constructs an empty deque. -
ConcurrentLinkedDeque
Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.- Parameters:
c- the collection of elements to initially contain- Throws:
NullPointerException- if the specified collection or any of its elements are null
-
-
Method Details
-
addFirst
Inserts the specified element at the front of this deque. As the deque is unbounded, this method will never throwIllegalStateException.- Specified by:
addFirstin interfaceDeque<E>- Parameters:
e- the element to add- Throws:
NullPointerException- if the specified element is null
-
addLast
Inserts the specified element at the end of this deque. As the deque is unbounded, this method will never throwIllegalStateException.This method is equivalent to
add(E).- Specified by:
addLastin interfaceDeque<E>- Parameters:
e- the element to add- Throws:
NullPointerException- if the specified element is null
-
offerFirst
Inserts the specified element at the front of this deque. As the deque is unbounded, this method will never returnfalse.- Specified by:
offerFirstin interfaceDeque<E>- Parameters:
e- the element to add- Returns:
true(as specified byDeque.offerFirst(E))- Throws:
NullPointerException- if the specified element is null
-
offerLast
Inserts the specified element at the end of this deque. As the deque is unbounded, this method will never returnfalse.This method is equivalent to
add(E).- Specified by:
offerLastin interfaceDeque<E>- Parameters:
e- the element to add- Returns:
true(as specified byDeque.offerLast(E))- Throws:
NullPointerException- if the specified element is null
-
peekFirst
Description copied from interface:DequeRetrieves, but does not remove, the first element of this deque, or returns null if this deque is empty. -
peekLast
Description copied from interface:DequeRetrieves, but does not remove, the last element of this deque, or returns null if this deque is empty. -
getFirst
Description copied from interface:DequeRetrieves, but does not remove, the first element of this deque. This method differs frompeekFirstonly in that it throws an exception if this deque is empty.- Specified by:
getFirstin interfaceDeque<E>- Returns:
- the head of this deque
- Throws:
NoSuchElementException- if this deque is empty
-
getLast
Description copied from interface:DequeRetrieves, but does not remove, the last element of this deque. This method differs frompeekLastonly in that it throws an exception if this deque is empty.- Specified by:
getLastin interfaceDeque<E>- Returns:
- the tail of this deque
- Throws:
NoSuchElementException- if this deque is empty
-
pollFirst
Description copied from interface:DequeRetrieves and removes the first element of this deque, or returns null if this deque is empty. -
pollLast
Description copied from interface:DequeRetrieves and removes the last element of this deque, or returns null if this deque is empty. -
removeFirst
Description copied from interface:DequeRetrieves and removes the first element of this deque. This method differs frompollFirstonly in that it throws an exception if this deque is empty.- Specified by:
removeFirstin interfaceDeque<E>- Returns:
- the head of this deque
- Throws:
NoSuchElementException- if this deque is empty
-
removeLast
Description copied from interface:DequeRetrieves and removes the last element of this deque. This method differs frompollLastonly in that it throws an exception if this deque is empty.- Specified by:
removeLastin interfaceDeque<E>- Returns:
- the tail of this deque
- Throws:
NoSuchElementException- if this deque is empty
-
offer
Inserts the specified element at the tail of this deque. As the deque is unbounded, this method will never returnfalse.- Specified by:
offerin interfaceDeque<E>- Specified by:
offerin interfaceQueue<E>- Parameters:
e- the element to add- Returns:
true(as specified byQueue.offer(E))- Throws:
NullPointerException- if the specified element is null
-
add
Inserts the specified element at the tail of this deque. As the deque is unbounded, this method will never throwIllegalStateExceptionor returnfalse.- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceDeque<E>- Specified by:
addin interfaceQueue<E>- Overrides:
addin classAbstractCollection<E>- Parameters:
e- the object to add.- Returns:
true(as specified byCollection.add(E))- Throws:
NullPointerException- if the specified element is null
-
poll
Description copied from interface:DequeRetrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty.This method is equivalent to
Deque.pollFirst(). -
remove
Description copied from interface:DequeRetrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque). This method differs frompollonly in that it throws an exception if this deque is empty.This method is equivalent to
Deque.removeFirst(). -
peek
Description copied from interface:DequeRetrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty.This method is equivalent to
Deque.peekFirst(). -
element
Description copied from interface:DequeRetrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque). This method differs frompeekonly in that it throws an exception if this deque is empty.This method is equivalent to
Deque.getFirst(). -
push
Description copied from interface:DequePushes an element onto the stack represented by this deque (in other words, at the head of this deque) if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.This method is equivalent to
Deque.addFirst(E). -
pop
Description copied from interface:DequePops an element from the stack represented by this deque. In other words, removes and returns the first element of this deque.This method is equivalent to
Deque.removeFirst(). -
removeFirstOccurrence
Removes the first elementesuch thato.equals(e), if such an element exists in this deque. If the deque does not contain the element, it is unchanged.- Specified by:
removeFirstOccurrencein interfaceDeque<E>- Parameters:
o- element to be removed from this deque, if present- Returns:
trueif the deque contained the specified element- Throws:
NullPointerException- if the specified element is null
-
removeLastOccurrence
Removes the last elementesuch thato.equals(e), if such an element exists in this deque. If the deque does not contain the element, it is unchanged.- Specified by:
removeLastOccurrencein interfaceDeque<E>- Parameters:
o- element to be removed from this deque, if present- Returns:
trueif the deque contained the specified element- Throws:
NullPointerException- if the specified element is null
-
contains
Returnstrueif this deque contains at least one elementesuch thato.equals(e).- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceDeque<E>- Overrides:
containsin classAbstractCollection<E>- Parameters:
o- element whose presence in this deque is to be tested- Returns:
trueif this deque contains the specified element
-
isEmpty
public boolean isEmpty()Returnstrueif this collection contains no elements.- Specified by:
isEmptyin interfaceCollection<E>- Overrides:
isEmptyin classAbstractCollection<E>- Returns:
trueif this collection contains no elements- See Also:
AbstractCollection.size()
-
size
public int size()Returns the number of elements in this deque. If this deque contains more thanInteger.MAX_VALUEelements, it returnsInteger.MAX_VALUE.Beware that, unlike in most collections, this method is NOT a constant-time operation. Because of the asynchronous nature of these deques, determining the current number of elements requires traversing them all to count them. Additionally, it is possible for the size to change during execution of this method, in which case the returned result will be inaccurate. Thus, this method is typically not very useful in concurrent applications.
- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceDeque<E>- Specified by:
sizein classAbstractCollection<E>- Returns:
- the number of elements in this deque
-
remove
Removes the first elementesuch thato.equals(e), if such an element exists in this deque. If the deque does not contain the element, it is unchanged.- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceDeque<E>- Overrides:
removein classAbstractCollection<E>- Parameters:
o- element to be removed from this deque, if present- Returns:
trueif the deque contained the specified element- Throws:
NullPointerException- if the specified element is null
-
addAll
Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator. Attempts toaddAllof a deque to itself result inIllegalArgumentException.- Specified by:
addAllin interfaceCollection<E>- Overrides:
addAllin classAbstractCollection<E>- Parameters:
c- the elements to be inserted into this deque- Returns:
trueif this deque changed as a result of the call- Throws:
NullPointerException- if the specified collection or any of its elements are nullIllegalArgumentException- if the collection is this deque
-
clear
public void clear()Removes all of the elements from this deque.- Specified by:
clearin interfaceCollection<E>- Overrides:
clearin classAbstractCollection<E>- See Also:
AbstractCollection.iterator(),AbstractCollection.isEmpty(),AbstractCollection.size()
-
toArray
Returns an array containing all of the elements in this deque, in proper sequence (from first to last element).The returned array will be "safe" in that no references to it are maintained by this deque. (In other words, this method must allocate a new array). The caller is thus free to modify the returned array.
This method acts as bridge between array-based and collection-based APIs.
- Specified by:
toArrayin interfaceCollection<E>- Overrides:
toArrayin classAbstractCollection<E>- Returns:
- an array containing all of the elements in this deque
-
toArray
public <T> T[] toArray(T[] a)Returns an array containing all of the elements in this deque, in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. If the deque fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this deque.If this deque fits in the specified array with room to spare (i.e., the array has more elements than this deque), the element in the array immediately following the end of the deque is set to
null.Like the
toArray()method, this method acts as bridge between array-based and collection-based APIs. Further, this method allows precise control over the runtime type of the output array, and may, under certain circumstances, be used to save allocation costs.Suppose
xis a deque known to contain only strings. The following code can be used to dump the deque into a newly allocated array ofString:
Note thatString[] y = x.toArray(new String[0]);toArray(new Object[0])is identical in function totoArray().- Specified by:
toArrayin interfaceCollection<E>- Overrides:
toArrayin classAbstractCollection<E>- Parameters:
a- the array into which the elements of the deque are to be stored, if it is big enough; otherwise, a new array of the same runtime type is allocated for this purpose- Returns:
- an array containing all of the elements in this deque
- Throws:
ArrayStoreException- if the runtime type of the specified array is not a supertype of the runtime type of every element in this dequeNullPointerException- if the specified array is null
-
iterator
Returns an iterator over the elements in this deque in proper sequence. The elements will be returned in order from first (head) to last (tail).The returned iterator is a "weakly consistent" iterator that will never throw
ConcurrentModificationException, and guarantees to traverse elements as they existed upon construction of the iterator, and may (but is not guaranteed to) reflect any modifications subsequent to construction. -
descendingIterator
Returns an iterator over the elements in this deque in reverse sequential order. The elements will be returned in order from last (tail) to first (head).The returned iterator is a "weakly consistent" iterator that will never throw
ConcurrentModificationException, and guarantees to traverse elements as they existed upon construction of the iterator, and may (but is not guaranteed to) reflect any modifications subsequent to construction.- Specified by:
descendingIteratorin interfaceDeque<E>- Returns:
- an iterator over the elements in this deque in reverse order
-