标签:time 多线程 imp logs 线程等待 print targe pre threading
1 import time 2 import threading 3 4 def f0(): 5 print(1) 6 def f1(): 7 time.sleep(10) 8 f0() 9 10 t= threading.Thread(target=f1) 11 t.setDaemon(True) # True:主线程不等待子线程执行,主线程结束,程序结束 12 t.start() 13 t= threading.Thread(target=f1) 14 t.setDaemon(True) 15 t.start() 16 t= threading.Thread(target=f1) 17 t.setDaemon(True) 18 t.start()
t.join() 主线程等待子线程执行,t.join(2)最多等待2秒
标签:time 多线程 imp logs 线程等待 print targe pre threading
原文地址:http://www.cnblogs.com/Erick-L/p/6501057.html