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

Python信号量

时间:2018-03-09 16:42:58      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:imp   pytho   tar   获得   方法   range   target   线程   current   

 

信号量相当于一个锁锁着的房间里的多个床位,同一时间可以有多个线程获得信号量,而锁则只能被一个线程获得。

import threading
import time

semaphore = threading.Semaphore(3)

def func():
    if semaphore.acquire():   # acquire和release方法同锁的方法,不同在于可以控制多个线程得到该semaphore
        print (threading.currentThread().getName() +  get semaphore)
        time.sleep(1)
        semaphore.release()

for i in range(10):
  t1 = threading.Thread(target=func)
  t1.start()

 

Python信号量

标签:imp   pytho   tar   获得   方法   range   target   线程   current   

原文地址:https://www.cnblogs.com/stin/p/8534604.html

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