标签:
查看 ubuntu 和 Qt的版本
Qt的版本也可以在 Qtcreator上面查看
Qt的版本 可以到 https://www.qt.io/download/ 注册后下载
使用root权限安装后即可以使用。
#include <QCoreApplication>
#include<QApplication>
#include<QPushButton>
//#include <qapplication.h>
//#include <qmainwindow.h>
int main(int argc, char *argv[])
{
QApplication app(argc, argv );
QPushButton*hello = new QPushButton( "Hello world!", 0 );
hello-> resize( 100, 30 );
hello-> show();
return app.exec();
}
注:程序是引自CSDN网友
并且在.pro文件中加上
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
标签:
原文地址:http://www.cnblogs.com/hqh-prg2016/p/5657250.html