资源简介

本示例采用继承QThread的方式创建线程,在创建的子线程中计数,并将计数的数值通过信号与槽的方式发送至主线程,在主线程的UI界面上显示出来。

资源截图

代码片段和文件信息

#include “widget.h“
#include 

int main(int argc char *argv[])
{
    QApplication a(argc argv);
    Widget w;
    w.show();

    return a.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-10 21:19  test_pthread\
     文件         175  2018-08-01 22:57  test_pthread\main.cpp
     文件         407  2018-08-01 22:57  test_pthread\test_pthread.pro
     文件         545  2018-12-10 20:46  test_pthread\thread.cpp
     文件         352  2018-12-10 20:44  test_pthread\thread.h
     文件         607  2018-12-10 20:45  test_pthread\widget.cpp
     文件         501  2018-12-10 20:33  test_pthread\widget.h
     文件        1502  2018-12-10 20:44  test_pthread\widget.ui

评论

共有 条评论

相关资源