使用 mysimplebook->GetPageCount() wxWidgets 时应用程序因分段错误而崩溃

App Crashes with Segmentation Fault when using mysimplebook->GetPageCount() wxWidgets

您好,我正在使用 wxWidgets 创建一个简单的应用程序。但是,当您单击屏幕上的黑色按钮时,示例应用程序(如下所示)会崩溃。仅当您从 onClick() 事件处理程序中添加语句 mySimplebook->GetPageCount() 时,应用程序才会崩溃。如果我从 onClick() 内部删除对上述语句的使用,则该应用程序不会崩溃。此外,在 MySimplebook 构造函数中使用上述语句也不会导致应用程序崩溃。只有当我在 onClick() 处理程序中使用 mySimplebook->GetPageCount(); 时,程序才会崩溃。否则,如果您在 onClick() 处理程序中省略此语句,程序将正常运行。我拥有的完整可重现代码如下:

mysimplebook.cpp

MySimplebook::MySimplebook(wxFrame *m_parentWindow, int id): wxPanel(m_parentWindow, id)
{
    wxBoxSizer *mainBoxsizer = new wxBoxSizer(wxVERTICAL);
    CustomButton *button = new CustomButton(this, wxID_ANY);
    mainBoxsizer->Add(button, 1, wxEXPAND, 0);
    mySimplebook = new wxSimplebook(this, wxID_ANY);

    First_Page *firstPage = new First_Page(mySimplebook);
    mySimplebook->AddPage(firstPage, "Input", false);
    
    mainBoxsizer->Add(mySimplebook, wxSizerFlags(1).Expand());
    /*program doesn't crashes here*/
    std::cout<<"Pages inside constructor: "<<(mySimplebook->GetPageCount())<<std::endl;
    this->SetSizer(mainBoxsizer);
}
void MySimplebook::onClick(wxMouseEvent &event)
{
    std::cout<<"event received from button"<<std::endl;
    //program creashes here
    std::cout<<"pagecount inside onclick:"<<(mySimplebook->GetPageCount())<<std::endl;
}

custombutton.cpp

CustomButton::CustomButton(wxWindow *parent, int id):wxPanel(parent, id)
{
    SetBackgroundColour(wxColour(0,0,0));
    Connect(wxEVT_LEFT_UP, wxMouseEventHandler(MySimplebook::onClick));
    
}

当我点击按钮时,程序崩溃了。我的问题是:

  1. 我该如何解决这个运行时崩溃问题?
  2. 为什么会发生这种崩溃?我以后应该如何避免它,比如使用 bind。或者我的代码的哪一部分应该更改以及如何更改?

这是回溯:

程序崩溃,控制台显示如下:

Pages inside constructor: 1
event received from button
Segmentation fault (core dumped)

PS:我知道问题很可能出在 Connect() 调用上。但是不知道如何resolve/correct。

解决方案是使用 bind 而不是 connect。我们可以在 mysimplebook.cpp 中创建按钮后立即使用 bind,而不是从 custombutton.cpp 中调用 Connect()。所以更改语句后:

Connect(wxEVT_LEFT_UP, wxMouseEventHandler(MySimplebook::onClick));

button->Bind(wxEVT_LEFT_UP, &MySimplebook::onClick, this);

程序有效。请注意,绑定语句就在 mysimplebook.cpp 中的 CustomButton 定义之后,无需在 custombutton 构造函数中使用它。