当前位置: 代码迷 >> QT开发 >> qt 小程序 运行出异常
  详细解决方案

qt 小程序 运行出异常

热度:46   发布时间:2016-04-25 04:57:04.0
qt 小程序 运行出错误
C/C++ code
#include<QApplication>#include<QtGui>#include<QString>#include<QObject>int main(int argc,char *argv[]){    QApplication app(argc,argv);    QWidget *w=NULL;    QVBoxLayout *vb=NULL;    QLabel *l=NULL;//    QPushButton *pb=NULL;    QLineEdit *le=NULL;    QString pas("\0");    vb->addWidget(l);    vb->addWidget(le);    vb->addWidget(pb);    w->setLayout(vb);    l->setText(QObject::tr("QQ2012"));    le->setEchoMode(QLineEdit::Password);    pb->setText(QObject::tr("Login"));    pas=le->text();    w->show();    return app.exec();}
RT!一运行就出错,大家下午好

------解决方案--------------------
新建是
QWidget *w = new QWidget;
祝你好运
  相关解决方案