我一直在关注某人的 Qt 教程的 Youtube 播放列表。当我尝试遵循Basic Application 和 HTML Aware Widgets时,尝试使用添加的 c++ 类创建一个空的 Qt 项目时出现此错误:
error: QApplication: No such file or directory
我安装了最新的 Qt 创建者和库,并在 #includes 下划线...
#include <QApplication>
#include <QLabel>
int main(int argc, char * argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("hello world");
label.show();
return app.exec();
}
在下面回答:我试过了,我的 .pro 看起来像这样:
QT += 核心部件 SOURCES += main.cpp
我得到了这些错误..
In function 'int qMain(int, char**)':
error: request for member 'show' in 'label', which is of pointer type 'QLabel*' (maybe you meant to use '->' ?)