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

多线程等待

时间:2018-05-31 19:38:18      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:start   多线程   imp   一个   end   --   sleep   thread   reads   

import threading,time
def run():
  time.sleep(3)
  print(‘哈哈哈‘)
start_time = time.time()
threads = [] #存放启动的5个线程
for i in range(5):
  t = threading.Thread(target=run)
  t.start()
  # t.join()-------主线程等待子线程执行结束----此处放置等待启动一个进程等待一次,相当于串行
  threads.append(t)

for lyl in threads: #主线程循环等待5个子线程执行结束
  lyl.join()
end_time = time.time()
print(‘run_time..‘,end_time-start_time)

多线程等待

标签:start   多线程   imp   一个   end   --   sleep   thread   reads   

原文地址:https://www.cnblogs.com/lynn-chen/p/9117971.html

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