在我的一个程序中,我试图更新Atomic Integer的值,但无法在set()getAndSet()方法之间做出决定,因为它们似乎都执行相同的操作。我已经看过thisthis帖子,但是他们正在比较setcompareAndSet(如果线程没有期望值,则放弃设置提供的值),而我有兴趣比较setsetAndGet(仅在设置了提供的值之后返回)。

   //Sets the newValue to the volatile member value
    public final void set(int newValue) {
       value = newValue;
   }




   public final int getAndSet(int newValue) {
       return unsafe.getAndSetInt(this, valueOffset, newValue);
   }
    //Doesn't give up until it sets the updated value. So eventually overwrites  the latest value.
    public final int getAndSetInt(Object paramObject, long paramLong, int paramInt) {
    int i;
    do {
        i = getIntVolatile(paramObject, paramLong);
    } while (!compareAndSwapInt(paramObject, paramLong, i, paramInt));
    return i;
}


我无法找出这两种方法之间的主要区别。


当我们有set()时为什么要有getAndSet()。可以选择不使用getAndSet()返回的值。
什么时候应使用这些方法中的每一种?

最佳答案

根据java documentation,他们都做不同的事情:

AtomicReference#getAndSet会将内部值设置为您传入的任何值,但将返回旧值。

AtomicReference<Integer> reference = new AtomicReference<>(10);
int value = reference.getAndSet(14);
System.out.println(value); // prints 10


AtomicReference#set将设置内部值,仅此而已。它返回void。

AtomicReference<Integer> reference = new AtomicReference<>(10);
reference.set(15);
System.out.println(reference.get()); // prints 15;

08-06 15:54