Java Concurrency 简明教程
Java Concurrency - AtomicReference Class
java.util.concurrent.atomic.AtomicReference 类提供对基础对象引用的操作,该引用可被原子性地读写,并且还包含高级原子操作。AtomicReference 支持对基础对象引用变量的原子操作。它有类似对 volatile 变量的读写操作的 get 和 set 方法。也就是说,set 操作与任何对相同变量的后续 get 操作之间存在先行发生关系。原子 compareAndSet 方法也有这些内存一致性特征。
AtomicReference Methods
以下是 AtomicReference 类中可用的重要方法列表。
Sr.No. |
Method & Description |
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() 返回当前值的 String 表示形式。 |
7 |
public boolean weakCompareAndSet(V expect, V update) 如果当前值 == 预期值,则以原子方式将值设置给定的更新后值。 |
Example
以下 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());
}
}
这将产生以下结果。