标签:mic 一个 art har core 示例 pre 多线程编程 image
QThread编程示例
class MyThread: public QThread //创建线程类
{
protected:
void run() //线程入口函数
{
for(int i=0; i<5; i++)
{
qDebug() << objectName() << ":" << i;
sleep(1) //暂停1s
}
}
};
多线程编程初探
#include <QCoreApplication>
#include <QThread>
#include <QDebug>
class MyThread : public QThread
{
protected:
void run()
{
qDebug() << objectName() << " : " << "run() begin";
for(int i=0; i<5; i++)
{
qDebug() << objectName() << ": " << i;
sleep(1);
}
qDebug() << objectName() << " : " << "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();
}
示例中的主线程将先于子线程结束,所有线程都结束后,进程结束
标签:mic 一个 art har core 示例 pre 多线程编程 image
原文地址:https://www.cnblogs.com/-glb/p/13363865.html