CAS的入门使用和原理

一、volitale和synchronized一起使用好麻烦

是否有疑问,需要保证多线程count++一个数时,需要添加volitale和synchronized两个一起才能实现,来回加锁,是不是有些麻烦?是否jdk有一个类,内部自动有锁,可以保证线程安全呢?答案是:肯定有。

二、Atomic类使用

AtomicXXX类实现线程安全,如下代码:

public class AtomicIntergerTest {
    private AtomicInteger atomicInteger = new AtomicInteger(0);

    public void add() {
        for (int i = 0; i < 10000; i++) {
            atomicInteger.incrementAndGet();
        }
    }

    public static void main(String[] args) {
        AtomicIntergerTest atomicIntergerTest = new AtomicIntergerTest();
        List<Thread> list = new ArrayList<>();
        for (int i = 0; i < 100; i++) {
            list.add(new Thread(()->{
                atomicIntergerTest.add();
            }, "thread" + i));
        }

        list.forEach((o)->{
            o.start();
        });

        list.forEach((o)->{
            try {
                o.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });

        System.out.println(atomicIntergerTest.atomicInteger);
    }
}

运行结果:
运行结果

三、Atomic类怎么实现线程安全的?

通过查阅代码和资料得知,Atomic类用的是CAS的技术,CAS:Compare and Swap,即比较再交换。
AtomicInteger.incrementAndGet的实现用了乐观锁技术,调用了类sun.misc.Unsafe库里面的 CAS算法,用CPU指令来实现无锁自增。

有人说:

AtomicInteger.incrementAndGet的自增比用synchronized的锁效率倍增

这个观点是不准确的,现在synchronized通过锁升级的方式,具体效率得实际场景测试得出,具体谁效率高不绝对。

四、CAS怎么实现线程安全的无锁自增的?

查看 atomicInteger.incrementAndGet();这个方法的源码

/**
     * Atomically increments the current value,
     * with memory effects as specified by {@link VarHandle#getAndAdd}.
     *
     * <p>Equivalent to {@code addAndGet(1)}.
     *
     * @return the updated value
     */
    public final int incrementAndGet() {
        return U.getAndAddInt(this, VALUE, 1) + 1;
    }
 /**
     * Atomically adds the given value to the current value of a field
     * or array element within the given object {@code o}
     * at the given {@code offset}.
     *
     * @param o object/array to update the field/element in
     * @param offset field/element offset
     * @param delta the value to add
     * @return the previous value
     * @since 1.8
     */
    @HotSpotIntrinsicCandidate
    public final int getAndAddInt(Object o, long offset, int delta) {
        int v;
        do {
            v = getIntVolatile(o, offset);
        } while (!weakCompareAndSetInt(o, offset, v, v + delta));
        return v;
    }

CAS有3个操作数,内存值V,旧的预期值A,要修改的新值B。当且仅当预期值A和内存值V相同时,将内存值V修改为B,否则什么都不做。一直循环,循环到当且仅当预期值A和内存值V相同时,返回 v + delta 后的值。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值