Qt 4.7 學習紀錄~C++ Qt 02 – hello world(YOUTUBE 教學備份)
Qt 4.7 學習紀錄~C++ Qt 02 – hello world(YOUTUBE 教學備份)
教學影片來源:https://www.youtube.com/watch?v=6KtOzh0StTc&list=PL2D1942A4688E9D63
Tool來源:http://qt.software.informer.com/download/
Github資源收藏:https://github.com/jash-git/Win_Qt_Learn
本教學內容,撰寫第一支 Qt程式 測試安裝環境的正確性
對應主要程式碼(所有專案放在: https://github.com/jash-git/Win_Qt_Learn/tree/master/project_code/Qt_002)
#include <QtCore/QCoreApplication> #include <QDebug> //add at 2017/03/23 by jash.liao int main(int argc, char *argv[]) qDebug() << “Hello World\nHello Qt4.7”;//add at 2017/03/23 by jash.liao return a.exec(); |