编译它是成功的但是当我运行它时,终端给了我一个“Segmentation fault(core dumped)”消息。我使用的编译器是Ubuntu上的g ++。
代码是:
#include <QApplication>
#include <QLabel>
#include <QLineEdit>
#include <QVBoxLayout>
#include <QWidget>
int main(int argc, char** argv){
QApplication app(argc, argv);
QWidget window;
QLabel *label = new QLabel;
QLineEdit *edit = new QLineEdit;
QObject::connect(edit, SIGNAL(textChanged(const QString&)), label, SLOT(setText(const QString&)));
QVBoxLayout *layout;
layout->addWidget(edit);
layout->addWidget(label);
window.setLayout(layout);
window.show();
return app.exec();
}
答案 0 :(得分:2)
QVBoxLayout *layout
未初始化,您正在使用未初始化的指针。
正确的方式:
QVBoxLayout *layout = new QVBoxLayout;
// use layout..