Q应用程序执行分段错误

QApplication Execution Segmentation Fault Error

本文关键字:错误 分段 执行 应用程序      更新时间:2023-10-16

任何人都能帮我吗。我正在尝试使用cmakefiles运行一个应用程序。在我的程序的主文件上,当程序到达执行QAppication的代码行时,我遇到了分段错误。下面是片段代码:

int main(int argc, char** argv)
{
bool viewing;
parse_command_line( argc, argv );
#ifdef _GRAPHICS_
  glutInit(&argc, argv);
#endif
 if( viewing )
        {
#ifdef _GRAPHICS_
      QApplication application(argc, argv);
      Viewer    *viewer = new Viewer( 0, exp, argc, argv );
      Interface *render = new Interface( 0, exp, viewer );
      render->show();
      return application.exec(); //this line causes the segmentation fault
      delete viewer;
      delete render;
#endif
        }

}

您的问题是,应用程序对象在其他使用它的对象之前就被销毁了。您应该利用C++语义来帮助您做到这一点,并在使用时摆脱令人讨厌的手动内存管理:

int main(int argc, char** argv)
{
  bool viewing;
  parse_command_line( argc, argv );
#ifdef _GRAPHICS_
  glutInit(&argc, argv);
#endif
  if (viewing) {
#ifdef _GRAPHICS_
    QApplication app(argc, argv);
    Viewer viewer( 0, exp, argc, argv );
    Interface render( 0, exp, &viewer );
    render.show();
    return app.exec();
#endif
  }
}

以上内容是必要的,因此您必须进行更改以避免未定义的行为。但是,如果您的ViewerInterface实现存在错误,则修复可能还不够。