我已经安装了Qt5.1.1并创建了一个新的Gui应用程序. mainwindow.h中的代码显示:
原文链接:https://www.f2er.com/windows/364782.html#if QT_VERSION >= 0x050000 #include <QtWidgets/QMainWindow> #else #include <QtGui/QMainWindow> #endif
我觉得很好.但是当我运行它时,我有这个:
error: C1083: Cannot open include file: 'QtGui/QMainWindow': No such file or directory
我知道什么时候更换
#if QT_VERSION >= 0x050000 #include <QtWidgets/QMainWindow> #else #include <QtGui/QMainWindow> #endif
至
#include <QtWidgets/QMainWindow>
有用.