1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// 来自C++ GUI Programming with Qt 4
// 编译:
//    qmake -project
//    qmake
//    make
#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();
}