We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6affc8 commit 2cf310aCopy full SHA for 2cf310a
Prog.md
@@ -8966,7 +8966,7 @@ public static void main(String[] args) throws InterruptedException {
8966
8967
###### await
8968
8969
-总体流程是将 await 线程包装成 node 节点放入 ConditionObject 的阻条件塞队列,如果被唤醒就将 node 转移到 AQS 的执行阻塞队列,等待获取锁
+总体流程是将 await 线程包装成 node 节点放入 ConditionObject 的条件队列,如果被唤醒就将 node 转移到 AQS 的执行阻塞队列,等待获取锁
8970
8971
* 开始 Thread-0 持有锁,调用 await,线程进入 ConditionObject 等待,直到被唤醒或打断,调用 await 方法的线程都是持锁状态的,所以说逻辑里**不存在并发**
8972
0 commit comments