Stopping a python thread running an Infinite Loop

前端 未结 2 1066
[愿得一人]
[愿得一人] 2021-01-12 10:44

I am new to python programming. I am trying to make a GUI with stoppable threads. I borrowed some code from https://stackoverflow.com/a/325528

class MyThre         


        
2条回答
  •  一个人的身影
    2021-01-12 11:10

    I think you missed the 'The thread itself has to check regularly for the stopped() condition' bit of that documentation.

    Your thread needs to run like this:

    while not self.stopped():
        # do stuff
    

    rather than while true. Note that it is still only going to exit at the 'start' of a loop, when it checks the condition. If whatever is in that loop is long-running, that may cause unexpected delays.

提交回复
热议问题