gpt4 book ai didi

c++ - 使用 SIGSEGV 初始化类成员应用程序崩溃后

转载 作者:行者123 更新时间:2023-11-30 03:37:57 25 4
gpt4 key购买 nike

<分区>

我有带有 Application 类的 Qt 应用程序:

class Application : public QApplication {
public:
Application(int argc, char** argv);
~Application();
};

在我添加之前一切正常

private:
const QString NAME = "QtImageViewer";

当我尝试运行该应用程序时,该应用程序崩溃了 10 次中的 9 次


主要看起来像

int main(int argc, char** argv)
{
Application app(argc, argv);
app.setApplicationName("QtImageViewer");

MainWindow mainWindow;
mainWindow.show();

return (app.exec());
}


我想知道出了什么问题,因为我不知道。

编辑: GDB backtrace Valgrind

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com