考虑以下简单的例子:
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个)加起来。