Qt中的多线程编程

2021-04-10 23:27

阅读:582

标签:mic   一个   art   har   core   示例   pre   多线程编程   image   

技术图片

 

 技术图片

 

 QThread编程示例

class MyThread: public QThread   //创建线程类
{
protected:
    void run()   //线程入口函数
    {
        for(int i=0; i5; i++)
        {
            qDebug() ":"  i;
            sleep(1)  //暂停1s
        }
    }

};

 

多线程编程初探

#include 
#include 
#include class MyThread : public QThread
{
protected:
    void run()
    {
        qDebug() " : " "run() begin";
        for(int i=0; i5; i++)
        {
            qDebug() ": "  i;
            sleep(1);
        }
        qDebug() " : " "run() end";
    }


};

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    qDebug() "main() begin";

    MyThread t;
    t.setObjectName("t");
    t.start();   //创建一个线程,并执行线程体run函数


    qDebug() "main() end";

    return a.exec();
}

 

示例中的主线程将先于子线程结束,所有线程都结束后,进程结束

 

技术图片

 

Qt中的多线程编程

标签:mic   一个   art   har   core   示例   pre   多线程编程   image   

原文地址:https://www.cnblogs.com/-glb/p/13363865.html


评论


亲,登录后才可以留言!