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

python之递归锁【Rlock】

时间:2017-07-29 11:27:05      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:线程   count()   pre   highlight   start   else   star   main   ret   

# 递归锁:就是一把锁中还有一把小锁,比如学校的大门口有一个大锁,学校里的
#每个教室也有一把小锁,以后所有的锁都用rlock就可以了,不要用lock,尤其是多层锁的时候,必须要用递归锁
import threading
import time

def run1():
    print("grab the first part data")
    lock.acquire()
    global num1
    num1 += 1
    lock.release()
    return num1

def run2():
    print("grab the second part data")
    lock.acquire()
    global num2
    num2 += 1
    lock.release()
    return num2

def run3():
    lock.acquire()
    res1 = run1()
    print("--------between run1 and run2-------")
    res2 = run2()
    lock.release()
    print("函数run1--->",res1,"函数run2--->",res2)

if __name__ == ‘__main__‘:
    num1 = 0
    num2 = 0
    lock = threading.RLock()
    for i in range(5):
        t = threading.Thread(target=run3)
        t.start()

while threading.active_count() != 1:
    print("剩余的线程数;[%s]" %threading.active_count())
else:
    print("all thread is down")
    print(num1,num2)

  

python之递归锁【Rlock】

标签:线程   count()   pre   highlight   start   else   star   main   ret   

原文地址:http://www.cnblogs.com/bainianminguo/p/7253925.html

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