码迷,mamicode.com
首页 > 编程语言 > 详细

多线程

时间:2017-03-04 13:57:40      阅读:200      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!