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

python - threading-semaphore 示例

时间:2017-10-26 16:58:00      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:thread   target   UI   count   pre   done   art   time   for   

import threading
import time

def run (n):
semaphore.acquire()
time.sleep(1)
print("run threading :",n)
semaphore.release()
semaphore=threading.BoundedSemaphore(4)
for i in range(20):
t=threading.Thread(target=run,args=(i,))
t.start()
while(threading.activeCount != 1):
pass
else:
print("main threading done.....")

python - threading-semaphore 示例

标签:thread   target   UI   count   pre   done   art   time   for   

原文地址:http://www.cnblogs.com/xiesongyou/p/7737425.html

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