java.util.concurrent.atomic.AtomicReference
类提供了可以原子读取和写入的底层对象引用的操作,还包含高级原子操作。 AtomicReference
支持对底层对象引用变量的原子操作。 它具有获取和设置方法,如在易变的变量上的读取和写入。 也就是说,一个集合与同一变量上的任何后续get
相关联。 原子compareAndSet
方法也具有这些内存一致性功能。
AtomicReference类的方法
以下是AtomicReference
类中可用的重要方法的列表。
序号 | 方法 | 描述 |
---|---|---|
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