首页 > 编程语言 > 详细

Python 守护线程

时间:2019-01-03 00:21:28      阅读:190      评论:0      收藏:0      [点我收藏+]

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 守护线程

原文:https://www.cnblogs.com/chenxuhua/p/10212027.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!