摘要: 参考 https://tech.meituan.com/2019/12/05/aqs-theory-and-apply.html https://blog.csdn.net/qq_29373285/article/details/85164190 java提供了两种方式来加锁,一种是关键字:sync 阅读全文
posted @ 2021-04-09 17:17 herrhu 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 简单使用AtomicInteger 首先贴出以下的代码,简单的使用AtomicInteger这个类来实现+1的操作。 import java.util.concurrent.atomic.AtomicInteger; public class CASTest { public static void 阅读全文
posted @ 2021-04-09 00:15 herrhu 阅读(2205) 评论(0) 推荐(0) 编辑