Qt提供QThread类以进行多任务的处理。Qt提供的线程可以做到单个进程做不到的事情。在这里实现最简单的一个多线程。最简单的线程的基类为QThread,然后需要重写QThread的run(),在run()函数中实现的功能就是在线程中实现的功能。代码如下:
YLThread.h
#ifndef YLTHREAD_H
#define YLTHREAD_H
#include <QThread>
class YLThread : public QThread
{
Q_OBJECT
public:
YLThread();
protected:
void run();
public:
//用来打印数据
void setValue(int num);
private:
int printNum;
};
#endif // YLTHREAD_H
YLThread.cpp
#include "YLThread.h"
#include <QDebug>
YLThread::YLThread()
{
}
void YLThread::run(){
//打印数据
for(int i =0;i < 5;i++){
p, li { white-space: pre-wrap; }
qDebug()<<QStringLiteral("value=%1输出:-----").arg(printNum)<<i+printNum;
}
}
void YLThread::setValue(int num)
{
printNum = num;
}
main.cpp
#include <QCoreApplication>
#include <QDebug>
#include "YLThread.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
YLThread* thread01 = new YLThread() ;
thread01->setValue(10);
YLThread* thread02 = new YLThread() ;
thread02->setValue(20);
thread01->start();
thread02->start();
return a.exec();
}
以上代码是实现了最简单的多线程的操作,运行结果如下:
输出结果中,带红框的是是value =10的情况时的线程,不带红框的是value =20 输出的结果。