Python 守护线程
Posted 陈旭华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 守护线程相关的知识,希望对你有一定的参考价值。
Python 可以通过 threading module 来创建新的线程,然而在创建线程的父线程关闭之后,相应的子线程可能却没有关闭,这可能是因为代码中没有使用setDaemon(True)
函数。接下来,使用一个例子来说明:
import threading
def prt_hello() :
while 1 :
print ‘hello‘
if __name__ == ‘__main__‘ :
t = threading.Thread(target=prt_hello)
t.setDaemon(True)
t.start()
以上是关于Python 守护线程的主要内容,如果未能解决你的问题,请参考以下文章