wxWidgets 有某种垃圾收集器吗?

发布于 2024-12-27 02:26:41 字数 419 浏览 0 评论 0原文

#include <wx/wx.h>

class MyApp : public wxApp
{
    virtual bool OnInit();
};

IMPLEMENT_APP(MyApp)

bool MyApp::OnInit()
{
    wxFrame *frame = new wxFrame(NULL, -1, _("Hello World"), wxPoint(50, 50),
                                  wxSize(450, 350));       
    frame->Show(true);
    return true;
}

这段代码工作得很好,而且它就是那种在外面看到的代码。我在堆上分配了一个wxFrame,我从不担心内存,wxWidgets 会收集它自己的垃圾吗?

#include <wx/wx.h>

class MyApp : public wxApp
{
    virtual bool OnInit();
};

IMPLEMENT_APP(MyApp)

bool MyApp::OnInit()
{
    wxFrame *frame = new wxFrame(NULL, -1, _("Hello World"), wxPoint(50, 50),
                                  wxSize(450, 350));       
    frame->Show(true);
    return true;
}

This code works fine and it is the kind of code if seen out there. I allocate a wxFrame on the heap and I never worry about the memory, does wxWidgets collects it's own garbage?

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

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

发布评论

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

评论(1

不可一世的女人 2025-01-03 02:26:41

AFAIK,这就是你应该如何使用 wxWidgets 处理窗口。该参考文献指出,您特别不得删除它们,并且您可以使用wxWindow::Destroy请求销毁它们。由用户操作关闭的框架的默认行为是该框架被销毁。

没有这样的垃圾收集(例如,除非删除,否则new wxString()将会泄漏),但某些类的内存将由库自动管理。

wxWidgets 窗口删除概述

AFAIK, this is how you should handle windows with wxWidgets. The reference says that you particularly must not delete them, and that you can request them to be destroyed with wxWindow::Destroy. The default behavior of a frame closed by user action is that the frame is destroyed.

There is no garbage collection as such (e.g a new wxString() will leak unless deleted), but the memory for some classes will be automatically managed by the library.

wxWidgets window deletion overview

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