We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45660b1 commit d9f0683Copy full SHA for d9f0683
docs/java/concurrent/aqs.md
@@ -189,7 +189,7 @@ final boolean nonfairTryAcquire(int acquires) {
189
190
**2)Share**(共享)
191
192
-多个线程可同时执行,如 `Semaphore/CountDownLatch`。`Semaphore`、`CountDownLatCh`、 `CyclicBarrier`、`ReadWriteLock` 我们都会在后面讲到。
+多个线程可同时执行,如 `Semaphore/CountDownLatch`。`Semaphore`、`CountDownLatch`、 `CyclicBarrier`、`ReadWriteLock` 我们都会在后面讲到。
193
194
`ReentrantReadWriteLock` 可以看成是组合式,因为 `ReentrantReadWriteLock` 也就是读写锁允许多个线程同时对某一资源进行读。
195
0 commit comments