Qt初學 之第一個「hello world! 」 程序分析 (二)

#include <QApplication> #include <QDialog> #include <QLabel> int main(int argc, char *argv[]) { QApplication a(argc,argv); # QApplication 用於管理應用程序的資源,任何一個Qt Widgets 程序都要一個QApplication對象 QDialog w; # Q
相關文章
相關標籤/搜索