我有一个班级:
class centralDataPool : public QObject
{
Q_OBJECT
public:
centralDataPool(QObject * parent = 0);
~centralDataPool();
commMonitor commOverWatch;
private:
QThread monitorThread;
int totalNum;
signals:
void createMonitor(int);
};
在我的构造函数中,我做了:
centralDataPool::centralDataPool(QObject* parent) : QObject(parent),totalNum(0)
{
connect(this, SIGNAL(createMonitor(int)), &commOverWatch, SLOT(createMonitor(int)));
commOverWatch.moveToThread(&monitorThread);
monitorThread.start();
}
当我调用此类的析构函数时,我收到错误消息:
qthread destroyed while thread is still running
但是当我试图在类centralDataPool的析构函数中终止monitorThread时,
centralDataPool::~centralDataPool()
{
monitorThread.terminate();
}
我得到了内存泄漏。
在销毁其所有者对象期间终止线程的正确方法是什么?
答案 0 :(得分:12)
你应该注意,如果你有一个在你的线程函数中运行的循环,你应该明确地结束它以正确终止线程。
您的类名为finishThread
的成员变量可以在应用程序关闭时设置为true
。只需提供一个插槽,您可以在其中设置finishThread
的值。当您想要终止线程时,发出一个连接到该槽的信号,其值为true
。应在循环条件中提供finishThread
以在设置为true
时结束它。在那之后等待线程正确完成几秒钟并强制它终止,如果它没有完成。
所以你可以拥有你的析构函数:
emit setThreadFinished(true); //Tell the thread to finish
monitorThread->quit();
if(!monitorThread->wait(3000)) //Wait until it actually has terminated (max. 3 sec)
{
monitorThread->terminate(); //Thread didn't exit in time, probably deadlocked, terminate it!
monitorThread->wait(); //We have to wait again here!
}