12 Qt中线程的使用
12.1 继承run()启动新线程
(1)类继承: public QThread
(2)继承基类虚函数:virtual void run();
(3)子类重载run()函数:
void duerOSFunctionRun::run()
{
}
说明:只有run()函数是在子线程中,其他的函数依旧在主线程
(3)启动子线程
SDuerOSFunctionRunUtility::getInstance().start();
12.2 通过connect进入子线程
(1)包含头文件,以及创建线程对象
#include
QThread m_recvSocketThread;
(2)在构造函数中,设置线程属性
//Set Thread Name
m_recvSocketThread.setObjectName(“recvSocketThread”);
moveToThread(&m_recvSocketThread);
(3)开始线程
m_recvSocketThread.start();
(4)connect关联,槽函数进入子线程
connect(&SSocketRecvControl::getInstance(),SIGNAL(notifyRecvSocketInit()),this,SLOT(onNotifyStartRecvSocket()),Qt::QueuedConnection);
说明:不论connect关联任何信号都行,也可以有多个connect,connect的槽函数都是在子线程中运行。其他函数依旧在主线程运行