现在的位置: 首页 > 综合 > 正文

qt4:hello.cpp

2014年02月02日 ⁄ 综合 ⁄ 共 166字 ⁄ 字号 评论关闭
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
 QApplication app(argc, argv);
 QLabel *label = new QLabel("Hello Qt!");
 label->show();
 return app.exec();

抱歉!评论已关闭.