我正在编写一个扫雷克隆程序以与qt联系。
当我退出编程器时,右上角的X会显示以下内容。
*** Error in `/home/.test/build-minesweeper-Desktop-Profile/minesweeper': free(): invalid pointer: 0x00007ffc01eba100 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x70bfb)[0x7fd2d0b93bfb]
/lib/x86_64-linux-gnu/libc.so.6(+0x76fc6)[0x7fd2d0b99fc6]
/lib/x86_64-linux-gnu/libc.so.6(+0x7780e)[0x7fd2d0b9a80e]
/usr/lib/x86_64-linux- gnu/libQt5Core.so.5(_ZN14QObjectPrivate14deleteChildrenEv+0x71)[0x7fd2d1e96e11]
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5(_ZN7QWidgetD1Ev+0x36b)[0x7fd2d2792bdb]
/home/.test/build-minesweeper-Desktop-Profile/minesweeper(+0x4e2b)[0x55ef85688e2b]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf1)[0x7fd2d0b432e1]
/home/.test/build-minesweeper-Desktop-Profile/minesweeper(+0x4f4a)[0x55ef85688f4a]
======= Memory map: ========
55ef85684000-55ef8568c000 r-xp 00000000 fe:05 335827230 /home/.test/build-minesweeper-Desktop-Profile/minesweeper
我没有提供完整的输出。
这是我的主要功能。
int main(int argc, char **argv) {
QApplication app(argc, argv);
QPushButton test;
test.setText("test");
QWidget mainWindow;
QBoxLayout boxLayout(QBoxLayout::TopToBottom);
QWidget mineWrapper;
MineField layout;
boxLayout.addWidget(&mineWrapper);
boxLayout.addWidget(&test);
mineWrapper.setLayout(&layout);
mainWindow.setLayout(&boxLayout);
mainWindow.setFixedSize(800, 600);
mainWindow.show();
return app.exec();
}
如果我删除Boxlayout并仅使用MineField,则效果很好。
实际上,如果我无法获得此输出,那么一切都会正常进行。
感谢您的帮助。
答案 0 :(得分:0)
由于@Zlatomir,我必须在堆而不是堆栈上分配QObject。
固定代码:
int main(int argc, char **argv) {
QApplication app(argc, argv);
QPushButton * test = new QPushButton;
test->setText("test");
QWidget mainWindow;
QBoxLayout * boxLayout = new QBoxLayout(QBoxLayout::TopToBottom);
QWidget *mineWrapper = new QWidget;
MineField *layout = new MineField;
boxLayout->addWidget(mineWrapper);
boxLayout->addWidget(test);
mineWrapper->setLayout(layout);
mainWindow.setLayout(boxLayout);
mainWindow.setFixedSize(800, 600);
mainWindow.show();
return app.exec();
}