博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java中cas的使用
阅读量:6342 次
发布时间:2019-06-22

本文共 956 字,大约阅读时间需要 3 分钟。

CAS是compare and swap的缩写,即我们所说的比较交换。cas是一种基于锁的操作,而且是乐观锁。

在java中锁分为乐观锁和悲观锁

synchronized就是一种悲观锁(独占锁),会导致其它所有需要锁的线程挂起,等待持有锁的线程释放锁。

而乐观锁采取了一种宽泛的态度,通过某种方式不加锁来处理资源,比如通过给记录加version来获取数据,性能较悲观锁有很大的提高

//代码转自 https://blog.csdn.net/u011381576/article/details/79922538

@Test

public void testCas() throws InterruptedException {
for (int i = 1; i <= 3; i++) {
MyThrend thrend = new MyThrend("thead" + i);
Thread thread = new Thread(thrend);
thread.start();
}
Thread.sleep(2000);
System.out.println(MyCount.count.get());
}

static class MyThrend implements Runnable {

private String name;
MyThrend(String threadName) {
this.name = threadName;
}

@Override

public void run() {
for (int i=0;i<20;i++){
MyCount.count.getAndIncrement(); //加1方法
System.out.println(name+"*"+MyCount.count.get());
}
}
}

private static class MyCount {

static AtomicInteger count = new AtomicInteger(0);
}

//java.util.current.atomic包下面,采用了CAS机制来实现加锁

转载于:https://www.cnblogs.com/xp0813/p/11028770.html

你可能感兴趣的文章
(四)整合spring cloud云服务架构 - 企业分布式微服务云架构构建
查看>>
java B2B2C Springcloud电子商城系统—Feign实例
查看>>
java B2B2C Springcloud多租户电子商城系统 (五)springboot整合 beatlsql
查看>>
掌握 analyze API,搞定分词难题
查看>>
go 单元测试
查看>>
我的友情链接
查看>>
为什么很多公司的大数据相关业务都基于 Hadoop 方案?
查看>>
俱乐部活动:一步一步看数据持久化
查看>>
用SQL存储过程生成唯一单据号
查看>>
C语言-第七章、用指针实现程序的灵活设计
查看>>
nginx: [emerg] getpwnam("nginx") failed
查看>>
防火墙
查看>>
体育馆管理系统源代码
查看>>
十五道Hibernate面试题及答案
查看>>
Throwable是一个怎样的类?
查看>>
Python基础(一)
查看>>
一次惨痛的搬砖总结--线上管理服务器迁移
查看>>
三条代码 搞定 python 生成验证码
查看>>
我的友情链接
查看>>
我的友情链接
查看>>