这段代码
#include <QtWidgets/QApplication>
#include <QLabel>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel *label = new QLabel("my first app");
label->show();
return app.exec();
}
导致错误:
我在Windows中使用Qt 5.0.1
最佳答案
更改
#include <QLabel>
到
#include <QtWidgets/QLabel>
这是QLabel
实际所在的位置(如果这是您想要的QLabel
)关于c++ - Qt程序错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15930125/