是否需要对连接的线程进行任何清理?

时间:2014-12-22 19:13:41

标签: python multithreading

考虑以下简单的例子:

import threading

def test():
    print ("In thread %r" % threading.current_thread())

while True:
    t = threading.Thread(target=test)
    t.start()
    t.join()

对于这个程序,加入每个t之后我还应该采取进一步的清理步骤吗?这个脚本应该永远运行,我想确保它不仅仅是吃资源。 我不会在实际应用程序中快速生成线程 this ,但它们确实相当快(每分钟大约200个)加起来。

0 个答案:

没有答案