zoukankan      html  css  js  c++  java
  • 死锁现象与递归锁解法

    死锁:此时执行程序中两个或多个线程发生永久堵塞(等待),每个线程都在等待被其他线程占用并堵塞了的资源。

    递归锁:可以多次acquire加锁

        使用:from threading import RLock     mutexA=RLock()

    from threading import Thread,Lock
    import time
    
    mutexA=Lock()
    mutexB=Lock()
    
    
    
    class Mythead(Thread):
        def run(self):
            self.f1()
            self.f2()
    
        def f1(self):
            mutexA.acquire()
            print('%s 抢到A锁' %self.name)
            mutexB.acquire()
            print('%s 抢到B锁' %self.name)
            mutexB.release()
            mutexA.release()
    
        def f2(self):
            mutexB.acquire()
            print('%s 抢到了B锁' %self.name)
            time.sleep(2)
            mutexA.acquire()
            print('%s 抢到了A锁' %self.name)
            mutexA.release()
            mutexB.release()
    
    if __name__ == '__main__':
        for i in range(100):
            t=Mythead()
            t.start()
    
    结果:
    Thread-1 抢到A锁
    Thread-1 抢到B锁
    Thread-1 抢到了B锁
    Thread-2 抢到A锁
    后面就卡住了
    举例
    from threading import Thread,Lock,RLock
    import time
    
    mutexB=mutexA=RLock()
    
    
    class Mythead(Thread):
        def run(self):
            self.f1()
            self.f2()
    
        def f1(self):
            mutexA.acquire()
            print('%s 抢到A锁' %self.name)
            mutexB.acquire()
            print('%s 抢到B锁' %self.name)
            mutexB.release()
            mutexA.release()
    
        def f2(self):
            mutexB.acquire()
            print('%s 抢到了B锁' %self.name)
            time.sleep(2)
            mutexA.acquire()
            print('%s 抢到了A锁' %self.name)
            mutexA.release()
            mutexB.release()
    
    if __name__ == '__main__':
        for i in range(5):
            t=Mythead()
            t.start()
    
    结果:
    Thread-1 抢到A锁
    Thread-1 抢到B锁
    Thread-1 抢到了B锁
    Thread-1 抢到了A锁
    Thread-2 抢到A锁
    Thread-2 抢到B锁
    Thread-3 抢到A锁
    Thread-3 抢到B锁
    Thread-3 抢到了B锁
    Thread-3 抢到了A锁
    Thread-5 抢到A锁
    Thread-5 抢到B锁
    Thread-2 抢到了B锁
    Thread-2 抢到了A锁
    Thread-4 抢到A锁
    Thread-4 抢到B锁
    Thread-4 抢到了B锁
    Thread-4 抢到了A锁
    Thread-5 抢到了B锁
    Thread-5 抢到了A锁
    递归锁解法
  • 相关阅读:
    unitTest单元测试框架
    Day06_页面发布与课程管理
    Day05_RabbitMQ研究
    Day04_页面静态化
    Day04_freemarker
    Day03_CMS页面管理开发
    Java概述练习题
    01_语言概述
    00_编程入门
    德道经
  • 原文地址:https://www.cnblogs.com/zhouhao123/p/11212142.html
Copyright © 2011-2022 走看看