任何人都可以帮我这个。我正在尝试使用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
}
}
答案 0 :(得分:0)
您的问题是应用程序对象在使用它的其他对象之前被销毁。您应该利用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
}
}
以上是必要的 - 因此您必须进行更改以避免未定义的行为。但是,如果您的Viewer
或Interface
实施存在错误,则修复可能还不够。