怎么写QT“hello world”程序
如何写QT“hello world”程序?如何写QT“hello world”程序?[最优解释]引用:C/C++ code?123456789101112131415
如何写QT“hello world”程序?
如何写QT“hello world”程序?
[最优解释]
up,正在学习中。
[其他解释]你在学Qt?
[其他解释]
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello World!");
label->show();
return app.exec();
}
[其他解释]其实没有学,只是看了一眼。