JUC concurrent programming -- Interpretation of AQS source code
catalogue
1. What is AQS
2. Use of LockSupport
3. Analyze AQS source code with ReentrantLock
Unfair locking operation
Release lock operation
1. What is AQS
AQS(AbstractQueuedSynchronizer) is a framework used to build locks and synchronizers. Using AQS can easily and efficiently construct a large number of synchronizers widely used, su ...
Posted by matthew798 on Sat, 08 Jan 2022 13:08:11 +0100