一个简单的qt程序没有运行错误消息说"分段错误"

时间:2014-04-08 22:32:20

标签: c++ qt qwidget qtgui qlayout

编译它是成功的但是当我运行它时,终端给了我一个“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();
}

1 个答案:

答案 0 :(得分:2)

QVBoxLayout *layout未初始化,您正在使用未初始化的指针。

正确的方式:

QVBoxLayout *layout = new QVBoxLayout;
// use layout..

http://qt-project.org/doc/qt-4.8/qvboxlayout.html