Java并发性AtomicReference类


一个java.util.concurrent.atomic.AtomicReference类提供了对基础对象引用的操作,它们可以以原子方式读取和写入,并且还包含高级的原子操作。AtomicReference支持基础对象引用变量的原子操作。它具有读取和写入易失性变量的方法。也就是说,一个集合与之后的任何一个变量之间都有一个前后关系。原子compareAndSet方法也具有这些内存一致性功能。

原子参考方法

以下是AtomicReference类中可用的重要方法列表。

Sr.No. 方法和描述
1 public boolean compareAndSet(V expect, V update) 如果当前值==期望值,则按原子值将该值设置为给定的更新值。
2 public boolean get() 返回当前值。
3 public boolean getAndSet(V newValue) 原子级设置为给定值并返回以前的值。
4 public void lazySet(V newValue) 最终设置为给定值。
5 public void set(V newValue) 无条件设置为给定值。
6 public String toString() 返回当前值的字符串表示形式。
7 public boolean weakCompareAndSet(V expect,V update) 如果当前值==期望值,则按原子值将该值设置为给定的更新值。

以下TestThread程序显示基于线程的环境中AtomicReference变量的用法。

import java.util.concurrent.atomic.AtomicReference;

public class TestThread {
   private static String message = "hello";
   private static AtomicReference<String> atomicReference;

   public static void main(final String[] arguments) throws InterruptedException {
      atomicReference = new AtomicReference<String>(message);

      new Thread("Thread 1") {

         public void run() {
            atomicReference.compareAndSet(message, "Thread 1");
            message = message.concat("-Thread 1!");
         };
      }.start();

      System.out.println("Message is: " + message);
      System.out.println("Atomic Reference of Message is: " + atomicReference.get());
   }
}

这将产生以下结果。

输出

Message is: hello
Atomic Reference of Message is: Thread 1