Tkinter线程何时停止线程

时间:2016-05-13 16:43:00

标签: python multithreading tkinter python-multithreading

我有一个Tkinter个应用。 UI代码中的两个按钮调用其他类函数。我为每个人开始一个主题:

t = threading.Thread(target=self.classOne.method_one())
        t.daemon = True
        t.start()

再次为第二类方法。

我开始的第二个线程调用资源密集型方法,这冻结了应用程序。

因为我没有正确设置线程,所以它是冻结的原因吗?我应该明确关闭线程吗?

0 个答案:

没有答案