等待并通知
如果主线程在子线程完成工作之前退出,并且子线程尝试通知,会发生什么?
谢谢
If the main thread quits before child finishes its work, and child tries to notify, what will happen?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您调用
notify()
在没有其他线程调用wait()
的对象上,则notify
调用将不起作用。If you call
notify()
on an object that no other thread calledwait()
on, then thenotify
call will have no effect.