Update Java 并发.md

This commit is contained in:
何正海 2020-04-27 18:03:17 +08:00 committed by GitHub
parent 2952f82f39
commit 471779c013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -690,7 +690,7 @@ after
## 阻塞BLOCKED
请求获取 monitor lock 从而进入 synchronized 函数或者代码块但是其它线程已经占用了该 monitor lock所以出于阻塞状态要结束该状态进入从而 RUNABLE 需要其他线程释放 monitor lock
请求获取 monitor lock 从而进入 synchronized 函数或者代码块但是其它线程已经占用了该 monitor lock所以出于阻塞状态要结束该状态从而进入RUNABLE 需要其他线程释放 monitor lock
## 无限期等待WAITING