码迷,mamicode.com
首页 > 其他好文 > 详细

Qt ----hello World

时间:2016-07-10 11:07:16      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

查看 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网友

 

错误:QMainWindow: No such file or directory 解决方法

并且在.pro文件中加上

QT       += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

技术分享

Qt ----hello World

标签:

原文地址:http://www.cnblogs.com/hqh-prg2016/p/5657250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!