AWT-EventQueue 线程和 AWT-Shutdown 线程未关闭
AWT-EventQueue 线程和 AWT-Shutdown 线程在我们的应用程序中没有关闭。是否有一种调试技术可以找出它们不存在的原因?有什么特别需要寻找的东西吗?
The AWT-EventQueue thread and AWT-Shutdown thread are not shutting down in our application. Is there a debugging technique for finding out why they are not? Any special things to look for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是关闭所有窗口后 JVM 没有正常退出,那么请查看以下几点:
Window.getWindows()
,Thread
(守护进程除外),System.exit(0)
(这是 JWS 的一个已知错误)希望这有助于回答您的问题。
此外,最近还有一个关于 Swing 窗口垃圾收集的 这个 SO 问题。
If you mean that the JVM doesn't exit properly after closing all windows, then look at the following points:
Window.getWindows()
Thread
(except daemons) after disposing of all windowsSystem.exit(0)
(that's a known bug of JWS)Hope this helps answer your question.
Besides, there was also this SO question recently about garbage collection of Swing windows.