Java|Java 之 AtomicReference
java 之 AtomicReference
【Java|Java 之 AtomicReference】AtomicReference类提供了一个可以原子读写的对象引用变量。 原子意味着尝试更改相同AtomicReference的多个线程(例如,使用比较和交换操作)不会使AtomicReference最终达到不一致的状态。 AtomicReference甚至有一个先进的compareAndSet()方法,它可以将引用与预期值(引用)进行比较,如果它们相等,则在AtomicReference对象内设置一个新的引用。
创建一个AtomicReference
AtomicReference atomicReference = new AtomicReference();
String initialReference = "the initially referenced string";
AtomicReference atomicReference = new AtomicReference(initialReference);
创建一个类型的AtomicReference
AtomicReference atomicStringReference = new AtomicReference();
获取值
AtomicReference atomicReference = new AtomicReference("first value referenced");
String reference = (String) atomicReference.get();
赋值
AtomicReference atomicReference =
new AtomicReference();
atomicReference.set("New object referenced");
比较赋值
String initialReference = "initial value referenced";
AtomicReference atomicStringReference =
new AtomicReference(initialReference);
String newReference = "new value referenced";
boolean exchanged = atomicStringReference.compareAndSet(initialReference, newReference);
System.out.println("exchanged: " + exchanged);
exchanged = atomicStringReference.compareAndSet(initialReference, newReference);
System.out.println("exchanged: " + exchanged);
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- PMSJ寻平面设计师之现代(Hyundai)
- 太平之莲
- 闲杂“细雨”
- 七年之痒之后
- 深入理解Go之generate
- 由浅入深理解AOP
- 期刊|期刊 | 国内核心期刊之(北大核心)
- 生活随笔|好天气下的意外之喜
- 感恩之旅第75天