#include
#include
Q_DECL_EXPORTintmain(intargc,char*argv[])
{
QApplicationapp(argc,argv);
//QLabel*label=newQLabel("HelloQt!");
//QLabel对像,QLabel是一个qt提供的小控件,显示一行文本
QLabel*label=newQLabel("Hello
");Qt!
label->show();
//显示QLabel
//returnapp->exec();
returnapp.exec();
}