QThread: Destroyed while thread is still running这个报警怎么解决?代码演示
时间: 2023-07-26 18:48:05 浏览: 88
pyqt5 的多线程(QThread)遇到的坑(二)
以下是一个简单的示例代码,演示如何在QThread对象销毁之前停止线程以避免QThread: Destroyed while thread is still running报警。
```cpp
#include <QThread>
#include <QDebug>
class MyThread : public QThread
{
public:
MyThread() {}
void stop()
{
m_stop = true;
}
protected:
void run()
{
while(!m_stop)
{
qDebug() << "Thread is running...";
sleep(1);
}
qDebug() << "Thread is stopped!";
}
private:
bool m_stop = false;
};
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
MyThread thread;
thread.start();
QThread::sleep(3); // 让线程运行3秒钟
thread.stop(); // 发送停止信号给线程
thread.wait(); // 等待线程完成
return a.exec();
}
```
在上面的示例代码中,我们定义了一个MyThread类继承自QThread,然后在run()函数中实现了线程的执行逻辑。我们在MyThread类中添加了一个stop()函数,用于发送停止信号给线程。
在主函数中,我们创建了一个MyThread对象并启动它。然后我们让线程运行3秒钟,然后发送停止信号给线程,最后等待线程完成。
这样,我们就能够在QThread对象销毁之前正确地停止线程,避免了QThread: Destroyed while thread is still running报警。
阅读全文