java中的锁
Posted idea偶买噶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中的锁相关的知识,希望对你有一定的参考价值。
Lock接口
api:lock(), unlock()....
AbstractQueuedSynchronizer队列同步器
同步器的设计是基于模板方法模式的,也就是说,使用者需要继承同步器并重写指定的方法,随后将同步器组合在自定义同步组件的实现 中, 并调用同步器提供的模板方法,而这些模板方法将会调用使用者重写的方法。
可重写的方法:
protected boolean tryAcquire(int arg)
protected boolean tryRelease(int arg)
protected int tryAcquireShared(int arg)
protected boolean tryReleaseShared(int arg)
protected boolean isHeldExclusively()
在重写的方法中,需要对同步进行更改时,可以使用同步器提供的三个方法来安全地改变同步状态:
getState()
setState()
compareAndSetState()
重入锁
读写锁
LockSupport
Condition接口
以上是关于java中的锁的主要内容,如果未能解决你的问题,请参考以下文章