Qt5 抛出 std::bad_alloc
Qt5 throws std::bad_alloc
我正在尝试在我的控制台应用程序中使用 QCustomPlot。我首先为它创建了一个适合我使用的简单包装器。包装器应该但是,我每次尝试显示 window.
时都会收到 std::bad_alloc 错误
这是我的代码,我在 Plot.hpp
:
中创建了一个包装器 class
class Plot
{
private:
std::string name;
QApplication* app;
QMainWindow* window;
QCustomPlot* plotWidget;
public:
Plot(std::string& name);
// OTHER METHODS
void showPlot();
};
在我的 Plot.cpp
文件中有以下内容:
Plot::Plot(std::string& name) : name(name)
{
char *gui_argv[] = {(char*)(name.c_str()), NULL};
int gui_argc = sizeof(gui_argv) / sizeof(char*) - 1;
app = new QApplication(gui_argc, gui_argv);
window = new QMainWindow();
// Add plot Widget
plotWidget = new QCustomPlot(window);
window->setCentralWidget(plotWidget);
plotWidget->plotLayout()->clear();
}
// OTHER METHODS
void Plot::showPlot()
{
// Run the GUI
window->show();
app->exec();
}
我的 main.cpp
中有以下内容:
int main()
{
std::string title = "Testing";
Util::Plot *plotWindow = new Util::Plot(title);
// NO OTHER STATEMENTS
plotWindow->showPlot();
return 0;
}
通过 GDB 我得到了这个堆栈跟踪,但我无法真正破译它以找出错误是什么。它深入到 QT 的内部:
#0 0x00007ffff7279e97 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
#1 0x00007ffff727b801 in __GI_abort () at abort.c:79
#2 0x00007ffff78d08fb in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#3 0x00007ffff78d6d3a in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#4 0x00007ffff78d6d95 in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#5 0x00007ffff78d6fe8 in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#6 0x00007ffff529e402 in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#7 0x00007ffff530a22a in QListData::detach(int) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#8 0x00007ffff534475e in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#9 0x00007ffff549a48f in QCoreApplication::arguments() () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#10 0x00007fffef9e3791 in () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#11 0x00007fffef9e3c8d in QXcbIntegration::wmClass() const () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#12 0x00007fffef9f8e03 in QXcbWindow::create() () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#13 0x00007fffef9e4bfb in QXcbIntegration::createPlatformWindow(QWindow*) const () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#14 0x00007ffff5a6229e in QWindowPrivate::create(bool, unsigned long long) () at /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5
#15 0x00007ffff6245add in QWidgetPrivate::create_sys(unsigned long long, bool, bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#16 0x00007ffff624619d in QWidget::create(unsigned long long, bool, bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#17 0x00007ffff6252a96 in QWidget::setVisible(bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
# The following is line window->show()
#18 0x00007ffff7bd3179 in Util::Plot::showPlot() (this=0x55555576fd80) at ./lib/util/Plot.cpp:71
#19 0x00005555555549b3 in main() () at ./lib/test/PlotTest.cpp:16
我还验证了指向 window
、app
和 plotWidget
的指针不为空。所以基本上,只是创建 QMainWindow
并试图在不执行任何其他操作的情况下显示它会导致此失败发生。这里有什么问题?我错过了什么?
额外:
我不认为以下是问题的原因。但以防万一:
我没有使用 QT Studio,我已经编写了自己的 makefile 来构建 libQCustomPlot.so
和我自己的应用程序并将它们链接到必要的 QT 库。通过编译没有失败或警告。
编辑1:
我忘了post原来的错误!就是下面没有额外的info/clarification:
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Aborted (core dumped)
QApplication 通过引用获取 argc
并期望此引用在应用程序的生命周期内有效。一旦您的 Plot 函数结束,QApplication 就会留下对 gui_argc
的悬空引用,因此当调用 QApplication::arguments 时(如您的回溯所示),会发生未定义的行为。您可以通过在某处使 argc
持久化来解决此问题。
我正在尝试在我的控制台应用程序中使用 QCustomPlot。我首先为它创建了一个适合我使用的简单包装器。包装器应该但是,我每次尝试显示 window.
时都会收到 std::bad_alloc 错误这是我的代码,我在 Plot.hpp
:
class Plot
{
private:
std::string name;
QApplication* app;
QMainWindow* window;
QCustomPlot* plotWidget;
public:
Plot(std::string& name);
// OTHER METHODS
void showPlot();
};
在我的 Plot.cpp
文件中有以下内容:
Plot::Plot(std::string& name) : name(name)
{
char *gui_argv[] = {(char*)(name.c_str()), NULL};
int gui_argc = sizeof(gui_argv) / sizeof(char*) - 1;
app = new QApplication(gui_argc, gui_argv);
window = new QMainWindow();
// Add plot Widget
plotWidget = new QCustomPlot(window);
window->setCentralWidget(plotWidget);
plotWidget->plotLayout()->clear();
}
// OTHER METHODS
void Plot::showPlot()
{
// Run the GUI
window->show();
app->exec();
}
我的 main.cpp
中有以下内容:
int main()
{
std::string title = "Testing";
Util::Plot *plotWindow = new Util::Plot(title);
// NO OTHER STATEMENTS
plotWindow->showPlot();
return 0;
}
通过 GDB 我得到了这个堆栈跟踪,但我无法真正破译它以找出错误是什么。它深入到 QT 的内部:
#0 0x00007ffff7279e97 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
#1 0x00007ffff727b801 in __GI_abort () at abort.c:79
#2 0x00007ffff78d08fb in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#3 0x00007ffff78d6d3a in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#4 0x00007ffff78d6d95 in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#5 0x00007ffff78d6fe8 in () at /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#6 0x00007ffff529e402 in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#7 0x00007ffff530a22a in QListData::detach(int) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#8 0x00007ffff534475e in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#9 0x00007ffff549a48f in QCoreApplication::arguments() () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
#10 0x00007fffef9e3791 in () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#11 0x00007fffef9e3c8d in QXcbIntegration::wmClass() const () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#12 0x00007fffef9f8e03 in QXcbWindow::create() () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#13 0x00007fffef9e4bfb in QXcbIntegration::createPlatformWindow(QWindow*) const () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#14 0x00007ffff5a6229e in QWindowPrivate::create(bool, unsigned long long) () at /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5
#15 0x00007ffff6245add in QWidgetPrivate::create_sys(unsigned long long, bool, bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#16 0x00007ffff624619d in QWidget::create(unsigned long long, bool, bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
#17 0x00007ffff6252a96 in QWidget::setVisible(bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
# The following is line window->show()
#18 0x00007ffff7bd3179 in Util::Plot::showPlot() (this=0x55555576fd80) at ./lib/util/Plot.cpp:71
#19 0x00005555555549b3 in main() () at ./lib/test/PlotTest.cpp:16
我还验证了指向 window
、app
和 plotWidget
的指针不为空。所以基本上,只是创建 QMainWindow
并试图在不执行任何其他操作的情况下显示它会导致此失败发生。这里有什么问题?我错过了什么?
额外:
我不认为以下是问题的原因。但以防万一:
我没有使用 QT Studio,我已经编写了自己的 makefile 来构建 libQCustomPlot.so
和我自己的应用程序并将它们链接到必要的 QT 库。通过编译没有失败或警告。
编辑1: 我忘了post原来的错误!就是下面没有额外的info/clarification:
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Aborted (core dumped)
QApplication 通过引用获取 argc
并期望此引用在应用程序的生命周期内有效。一旦您的 Plot 函数结束,QApplication 就会留下对 gui_argc
的悬空引用,因此当调用 QApplication::arguments 时(如您的回溯所示),会发生未定义的行为。您可以通过在某处使 argc
持久化来解决此问题。