繁体   English   中英

PyQt QThread:在线程仍在运行时被销毁

[英]PyQt QThread: Destroyed while thread is still running

尽管将对QThread的引用保存为self.lightsThread ,但是停止QObject self.lightsWorker然后再次启动self.lightsThread导致错误

QThread: Destroyed while thread is still running

停止self.lightsWorkerQThread self.lightsThread必须停止吗? 如果不是,那似乎是什么问题?

import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import time



class Screen(QMainWindow):
    def __init__(self):
        super(Screen, self).__init__()
        self.initUI()

    def initUI(self):
        self.lightsBtn = QPushButton('Turn On')
        self.lightsBtn.setCheckable(True)  
        self.lightsBtn.setStyleSheet("QPushButton:checked {color: white; background-color: green;}")
        self.lightsBtn.clicked.connect(self.lightsBtnHandler)

        self.setCentralWidget(self.lightsBtn)

    def lightsBtnHandler(self):
        if self.lightsBtn.isChecked():
            self.startLightsThread()
        else:
            self.stopLightsThread()

    def startLightsThread(self):
        print 'start lightsThread'
        self.lightsThread = QThread()
        self.lightsWorker = LightsWorker()
        self.lightsWorker.moveToThread(self.lightsThread)
        self.lightsThread.started.connect(self.lightsWorker.work)
        self.lightsThread.start()


    def stopLightsThread(self):
        print 'stop lightsThread'
        self.lightsWorker.stop()



class LightsWorker(QObject):
    signalFinished = pyqtSignal()

    def __init__(self):
        QObject.__init__(self)
        self._mutex = QMutex()
        self._running = True

    @pyqtSlot()
    def work(self):
        while self._running:
            print 'working'
            time.sleep(1)
        self.signalFinished.emit()

    @pyqtSlot()
    def stop(self):
        print 'Stopping'
        self._mutex.lock()
        self._running = False
        self._mutex.unlock()



app = QApplication(sys.argv)
window = Screen()
window.show()
sys.exit(app.exec_())

停止lightWorker你应该退出https://stackoverflow.com/a/32138213/7742341 ,你应该从线程退出并等待直到它停止

def stopLightsThread(self):
    print('stop lightsThread')
    self.lightsWorker.stop()
    self.lightsThread.quit()
    self.lightsThread.wait()

我不得不在C ++中遇到同样的问题,但问题是一样的。

问题是在关联的线程仍在运行时删除了QThread实例。 这可能非常危险,因为线程代码执行被中断,而且保证线程已准备好被删除。

例如 :

  • 线程控制对象(工人)的执行和生命时间
  • 在这个对象析构函数中释放一个ressource(像使用QObject父/子系统时那样明显或隐含)
  • 由于线程执行被中断,因此不会删除该对象

它导致内存泄漏和资源泄漏。

在您的代码中,工作程序已停止,但不是工作线程。 我不是python专家,但似乎你的worker对象已经停止但没有被删除。

要正确停止您的工作者和线程,您应该:

  • 发消息给你的工人告诉它“停止工作”
  • 请求您的线程退出:它会向工作执行后将处理的线程发送“退出”消息
  • 等待你的线程停止

最后一步是optionnal:如果线程和worker没有与其他对象共享资源,你可能不需要等待它们完成,只需忘记它们。

唯一的例外是在退出应用程序之前应该正确停止所有线程:您应该等待所有当前运行的线程在应用程序退出之前停止。

对于简单的任务,您还应该考虑使用QtConcurrent框架。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM