您的解决方案对我来说很好。
threading.Event(),它具有一个
wait()可以代替的方法
time.sleep()。
stop_event = threading.Event()...stop_event.wait(1.)if stop_event.isSet(): return...
为使线程在程序终止时退出
daemon,请
True在调用之前将其属性设置为
start()。这也适用于
Timer()对象,因为它们是子类
threading.Thread。请参阅http://docs.python.org/library/threading.html#threading.Thread.daemon
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)