• 死锁现象与递归锁解法


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

    递归锁:可以多次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锁
    递归锁解法
  • 相关阅读:
    @Transactional 什么情况下会失效?
    如何主持一场专业的面试?
    MIT-HIB 心率数据库及相关
    hadoop中Writable类
    XXX.jar has no source attachment
    Win10Eclipse配置个人本地hadoop
    js去除两个数组中重复的元素
    JS找出两个数组中不相同的元素
    flex中order控制元素的排列顺序
    flex中align-self设置侧轴的某元素的对其方式
  • 原文地址:https://www.cnblogs.com/zhouhao123/p/11212142.html
Copyright © 2020-2023  润新知