线程 - wait()

发布于 2024-12-03 21:59:02 字数 217 浏览 0 评论 0原文

对象上的 wait() 方法只能在同步上下文中调用,即当前线程必须拥有对象上的锁才能调用 wait() 方法。现在,如果线程 T1 拥有对象 (obj) 的锁并调用其等待方法 obj.wait() 。其他线程如何获得此对象(obj)的锁定,以便它们也可以调用已经拥有 T1 的 wait ?

The wait() method on an object can be called only in the synchronized context i.e. the current thread must have a lock on the object to invoke the wait() method. Now if a thread T1 has a lock on an object(obj) and invokes its wait method obj.wait() . How can other threads get lock on this object(obj) so that they can also call wait, which is already possessed T1 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一杯敬自由 2024-12-10 21:59:02

wait 释放同步上下文。来自文档

当前线程必须拥有该对象的监视器。线程释放
该监视器的所有权
并等待另一个线程通知
在此对象的监视器上等待唤醒的线程 (...)

wait releases the synchronized context. From the documentation:

The current thread must own this object's monitor. The thread releases
ownership of this monitor
and waits until another thread notifies
threads waiting on this object's monitor to wake up (...)

复古式 2024-12-10 21:59:02

您只需要在调用 wait() 方法期间进行同步,而不是在等待时间期间进行同步。

You only need to be synchronized for the duration of calling the wait() method, not for the duration of the wait time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文