wxwidgets如何使用wxCloseEvent关闭线程

发布于 2024-11-27 18:39:03 字数 128 浏览 1 评论 0原文

主程序线程(派生自wxConvas)生成用于一些复杂计算的线程

当来自用户的wxCloseEvent到达时我想在此事件上删除线程,因为允许线程继续工作会导致内存错误 想知道如何在运行时从主线程中找到线程以及如何销毁/删除它?

The main program thread (derived from wxConvas) generates the thread for some complicated calculations

When the wxCloseEvent from user arrives I want on this event to delete the thread ,because allowing the thread to continue to work causes memory errors
want to know how can I find the thread from main thread in runtime and how exactly I destroy/delete it?

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

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

发布评论

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

评论(1

情泪▽动烟 2024-12-04 18:39:03

您没有“找到”线程。当您构造它时,您将它或指向它的指针保留为属性。当应用程序关闭时,您应该覆盖 wxApp::OnExit
() 方法通过调用存储的线程属性上的 wxThread::Delete() 方法来删​​除线程。

You do not 'find' the thread. When you construct it, you keep it, or a pointer to it, as an attribute. When the application closes, you should overide the wxApp::OnExit
() method to delete the thread by calling the method wxThread::Delete() on the stored thread attribute.

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