Qt 학습 노트: 첫 번 째 프로그램 HelloWorld

Qt 학습 노트: 안녕하세요!
 
다음으로 전송:http://lyhopq.yo2.cn/articles/qt-%e5%ad%a6%e4%b9%a0%ef%bc%88%e4%b8%80%ef%bc%89.html
 
Qt 환경 설정 되 었 으 니 일 을 시작 합 시다! 초보 자 에 게 첫 번 째 프로그램 은 Hello, World!됐어.
 #include
 
#include  
int main( int argc, char **argv ){
    QApplication a( argc, argv );
    QPushButton hello( "Hello world!", 0 );
    hello.resize( 100, 30 );
    a.setMainWidget( &hello );
    hello.show();
    return a.exec();
}
  :1.   #include <qapplication.h>       QApplication    。
                       Qt             QApplication  。
          2.                       ,        。
          3.  main()        。     Qt      ,main()   
                      Qt          ,  Qt         

               return a.exec();    main()      Qt,         
                  exec()    。 exec() ,Qt             

  :         cpp   , First     main.cpp(    cpp )  ,
           qmake -project         #     Qt    ,    qmake -project
                                 #            First.pro                
           qmake                # qmake     makefile。 
           make                 #   
  :  ./First
 
  :    make  ,        
main.cpp:11:   : ‘class QApplication’    ‘setMainWidget’   
make: *** [main.o]    1
    qt4  setMainWidget         ,         。

좋은 웹페이지 즐겨찾기