The AtomicInteger Java class (in the java.util.concurrent.atomic package) is a container for an integer value. One of its methods is def compareAndSet(expect: Int, update: Int): Boolean.
This method compares the object’s current value to expect. If the values are equal, then it atomically replaces the object’s value with update and returns true. Otherwise, it leaves the object’s value unchanged, and returns false. This class also provides get() : Int which returns the object’s actual value. Consider the FIFO queue implementation given by the class IQueue. It stores its items in an array items. It has two AtomicInteger fields: tail is the index of the next slot from which to remove an item, and head is the index of the next slot in which to place an item. Give an example showing that this implementation is not linearizable.
1 class IQueue
2 AtomicInteger head = new AtomicInteger(0);
3 AtomicInteger tail = new AtomicInteger(0);
4 T[] items = (T[]) new Object[Integer.MAX_VALUE];
5 public void enq(T x) {
6 int slot;
7 do {
8 slot = tail.get();
9 } while (! tail.compareAndSet(slot, slot+1));
10 items[slot] = x;
11 }
12 public T deq() throws EmptyException {
13 T value;
14 int slot;
15 do {
16 slot = head.get();
17 value = items[slot];
18 if (value == null)
19 throw new EmptyException();
20 } while (! head.compareAndSet(slot, slot+1));
21 return value;
22 }
23 }
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more