We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2ad9aa + 7ed4a93 commit cf282ceCopy full SHA for cf282ce
1 file changed
docs/java/concurrent/java-concurrent-questions-03.md
@@ -590,7 +590,7 @@ public abstract class AbstractQueuedSynchronizer extends AbstractOwnableSynchron
590
}
591
```
592
593
-AQS 为构建锁和同步器提供了一些通用功能的是实现,因此,使用 AQS 能简单且高效地构造出应用广泛的大量的同步器,比如我们提到的 `ReentrantLock`,`Semaphore`,其他的诸如 `ReentrantReadWriteLock`,`SynchronousQueue`等等皆是基于 AQS 的。
+AQS 为构建锁和同步器提供了一些通用功能的实现,因此,使用 AQS 能简单且高效地构造出应用广泛的大量的同步器,比如我们提到的 `ReentrantLock`,`Semaphore`,其他的诸如 `ReentrantReadWriteLock`,`SynchronousQueue`等等皆是基于 AQS 的。
594
595
### AQS 的原理是什么?
596
0 commit comments