Skip to content

Commit

Permalink
更正笔误,“睡眠手段不会释放对象锁”
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuanleiGuo authored Apr 5, 2018
1 parent 5726af8 commit 45fede1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/Java 并发.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ main() 属于非后台线程。

阻塞是一种状态,而睡眠和挂起是一种手段,通过睡眠和挂起可以让一个线程进入阻塞状态。

睡眠和挂起这两种手段的区别是,挂起手段会释放对象锁,而阻塞手段不会
睡眠和挂起这两种手段的区别是,挂起手段会释放对象锁,而睡眠手段不会

应该注意的是,睡眠和挂起都可以设置一个等待时间,超过等待时间之后,线程会退出阻塞状态。但是如果不为挂起设置等待时间,那么它只能等到通知的到来才能退出阻塞状态。

Expand Down

0 comments on commit 45fede1

Please sign in to comment.