Java AtomicReference类
java.util.concurrent.atomic.AtomicReference类提供了可以原子读取和写入的底层对象引用的操作,还包含高级原子操作。 AtomicReference支持对底层对象引用变量的原子操作。 它具有获取和设置方法,如在易变的变量上的读取和写入。 也就是说,一个集合与同一变量上的任何后续get相关联。 原子compareAndSet方法也具有这些内存一致性功能。
1 AtomicReference类的方法
以下是AtomicReference类中可用的重要方法的列表。
方法 | 描述 |
---|---|
public boolean compareAndSet(V expect, V update) | 如果当前值==期望值,则将该值原子设置为给定的更新值。 |
public boolean get() | 返回当前值。 |
public boolean getAndSet(V newValue) | 将原子设置为给定值并返回上一个值。 |
public void lazySet(V newValue) | 最终设定为给定值。 |
public void set(V newValue) | 无条件地设置为给定的值。 |
public String toString() | |
public boolean weakCompareAndSet(V expect, V update) | 如果当前值==期望值,则将该值原子设置为给定的更新值。 |
2 AtomicReference类的案例
以下TestThread程序显示了基于线程的环境中AtomicReference变量的使用。
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
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
热门文章
优秀文章