QT程序hello
#include <QtGui/QWidget>#include <qapplication.h>//包含QApplication类的定义
#include <qpushbutton.h>//包含QPushButton类的定义
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPushButton hello("Hello world!",0);
hello.resize(100,30);
a.setMainWidget(&hello);
hello.show();
return a.exec();
}
这段程序有错误吗?为什么运行的时候报错?
错误:'class QApplication' has no member named 'setMainWidget'