I was experimenting with java.util.concurrent and trying to work out how to use AtomicReference.compareAndSet correctly to manage concurrent access to a single unit of shared state.
In particular: is the following usage of compareAndSet correct and safe? Any pitfalls?
My test class is a simple stack based on a linked list of nodes.
public class LinkedStack<T> {
AtomicReference<Node<T>> topOfStack=new AtomicReference<Node<T>>();
public T push(T e) {
while(true) {
Node<T> oldTop=topOfStack.get();
Node<T> newTop=new Node<T>(e,oldTop);
if (topOfStack.compareAndSet(oldTop, newTop)) break;
}
return e;
}
public T pop() {
while(true) {
Node<T> oldTop=topOfStack.get();
if (oldTop==null) throw new EmptyStackException();
Node<T> newTop=oldTop.next;
if (topOfStack.compareAndSet(oldTop, newTop)) return oldTop.object;
}
}
private static final class Node<T> {
final T object;
final Node<T> next;
private Node (T object, Node<T> next) {
this.object=object;
this.next=next;
}
}
...................
}
AtomicReferencebut rather what you're returning frompush. I would sooner expectpushto return nothing or the value that was being buried than the value you're pushing itself. – Mark Peters Apr 5 '11 at 14:43Stack. It was introduced in Java 6 andStack's Javadoc was changed to suggest usingDequeoverStack. – Mark Peters Apr 5 '11 at 14:47