CAS算法

前言

CAS,即 Compare And Swap(比较与交换),是一种无锁算法,基于硬件原语实现,能够在不使用锁的情况下实现多线程之间的变量同步。jdk中的java.util.concurrent.atomic包中的原子类就是通过CAS来实现了乐观锁。

CAS算法过程

算法涉及到三个操作数:

  • 需要读写的内存位置V
  • 需要进行比较的预期值A
  • 需要写入的新值U

CAS算法解析:

CAS具体执行时,当且仅当预期值A符合内存地址V中存储的值时,就用新值U替换掉旧值,并写入到内存地址V中。否则不做更新。

CAS算法的运行原理如下如所示:

CAS算法图解

CAS会有如下三个方面的问题:

1.ABA问题,一个线程将内存值从A改为B,另一个线程又从B改回到A。

2.循环时间长开销大:CAS算法需要不断地自旋来读取最新的内存值,长时间读取不到就会造成不必要的CPU开销。
3. 只能保证一个共享变量的原子操作(jdk的AtomicReference来保证应用对象之间的原子性,可以把多个变量放在一个对象里来进行CAS操作,解决了这一问题)。

ABA问题图解:

ABA问题图解

ABA问题解决方案:在变量前面添加版本号,每次变量更新的时候都将版本号加1,比如juc的原子包中的AtomicStampedReference类。

### Compare And Swap (CAS) Algorithm Implementation in Java In Java, the `java.util.concurrent.atomic` package offers classes that support atomic operations using hardware-level synchronization primitives such as Compare-And-Swap (CAS). These classes provide methods like `compareAndSet`, which implement CAS functionality without requiring explicit locking mechanisms. The following code demonstrates a simple implementation of a counter class utilizing CAS through `AtomicInteger`. This approach ensures thread-safe increments by leveraging the underlying CPU's ability to perform atomic compare-and-set operations: ```java import java.util.concurrent.atomic.AtomicInteger; public class CasCounter { private AtomicInteger count = new AtomicInteger(0); public int getValue() { return count.get(); } public boolean incrementIfLessThan(int expectedValue) { while (true) { int currentValue = count.get(); if (currentValue >= expectedValue) { return false; } else { // Attempt to update value atomically via CAS operation if (count.compareAndSet(currentValue, currentValue + 1)) { return true; } } } } } ``` This example uses `AtomicInteger`'s `compareAndSet` method[^1], ensuring only one thread can successfully increase the counter when multiple threads attempt simultaneous updates. The loop continues until either another thread has updated the variable or this thread manages to apply its change. For more complex data structures where direct support from existing atomic types isn't available, developers might consider implementing custom logic based on similar principles. However, caution should be exercised since incorrect usage could lead to issues like ABA problems or performance bottlenecks due to excessive spinning within loops waiting for successful swaps.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值