千家信息网

CAS算法和ABA的用法

发表于:2024-11-24 作者:千家信息网编辑
千家信息网最后更新 2024年11月24日,这篇文章主要介绍"CAS算法和ABA的用法",在日常操作中,相信很多人在CAS算法和ABA的用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"CAS算法和ABA的用法"
千家信息网最后更新 2024年11月24日CAS算法和ABA的用法

这篇文章主要介绍"CAS算法和ABA的用法",在日常操作中,相信很多人在CAS算法和ABA的用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"CAS算法和ABA的用法"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

package com.shi.CAS;import java.util.concurrent.atomic.AtomicInteger;import java.util.concurrent.atomic.AtomicStampedReference;/** * ABA问题案例 * @author shiye * */public class ABATest1 {        static AtomicInteger auAtomicInteger = new AtomicInteger(100);        static AtomicStampedReference atomicStampedReference = new AtomicStampedReference<>(100,1);        public static void main(String[] args) throws InterruptedException {                System.out.println("===============ABA问题的产生===============");                                new Thread(()-> {                        boolean a1 = auAtomicInteger.compareAndSet(100, 200);                        System.out.println(Thread.currentThread().getName() + a1 + " 第一次  修改之后的值为 " + auAtomicInteger.get());                        boolean a2 = auAtomicInteger.compareAndSet(200, 100);                        System.out.println(Thread.currentThread().getName() + a2 + " 第二次 修改之后的值为 " + auAtomicInteger.get());                },"线程A ").start();                                new Thread(()-> {                        try {                                Thread.sleep(1000);                        } catch (InterruptedException e) {                                e.printStackTrace();                        }                        boolean b1 = auAtomicInteger.compareAndSet(100, 2019);                        System.out.println(Thread.currentThread().getName() + b1 + " 第一次 修改之后的值为 " + auAtomicInteger.get());                },"线程B ").start();                                Thread.sleep(3000);                System.out.println("===============ABA问题的解决===============");                                new Thread(()->{                        int stamp1 = atomicStampedReference.getStamp();//获取版本                         System.out.println(Thread.currentThread().getName() + "当前版本是: " + stamp1);                        try {                                Thread.sleep(1000);//睡眠1s                        } catch (InterruptedException e) {                                e.printStackTrace();                        }                                                boolean C1 = atomicStampedReference.compareAndSet(100, 499, stamp1, stamp1+1);                        System.out.println(Thread.currentThread().getName() + C1 + " 第一次  修改之后的值为 " + atomicStampedReference.getReference() + " 版本号为: " + atomicStampedReference.getStamp());                                                int stamp2 = atomicStampedReference.getStamp();//获取版本                         boolean C2 = atomicStampedReference.compareAndSet(499, 100, stamp2, stamp2+1);                        System.out.println(Thread.currentThread().getName() + C2 + " 第二次  修改之后的值为 " + atomicStampedReference.getReference() + " 版本号为: " + atomicStampedReference.getStamp());                                },"线程C ").start();                                new Thread(()->{                        int stamp1 = atomicStampedReference.getStamp();//获取版本                         System.out.println(Thread.currentThread().getName() + "当前版本是: " + stamp1);                        try {                                Thread.sleep(3000);//睡眠3s                        } catch (InterruptedException e) {                                e.printStackTrace();                        }                                                boolean d1 = atomicStampedReference.compareAndSet(100, 2019, stamp1, stamp1+1);                        System.out.println(Thread.currentThread().getName() + d1 + " 第一次  修改之后的值为 " + atomicStampedReference.getReference() + " 版本号为: " + atomicStampedReference.getStamp());                },"线程D ").start();        }}

执行结果:

===============ABA问题的产生===============线程A true 第一次  修改之后的值为 200线程A true 第二次 修改之后的值为 100线程B true 第一次 修改之后的值为 2019===============ABA问题的解决===============线程C 当前版本是: 1线程D 当前版本是: 1线程C true 第一次  修改之后的值为 499 版本号为: 2线程C false 第二次  修改之后的值为 499 版本号为: 2线程D false 第一次  修改之后的值为 499 版本号为: 2

到此,关于"CAS算法和ABA的用法"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0