摘要: 死锁现象与解决方案 from threading import Thread,Lock,active_count import time mutexA=Lock() # 锁1 mutexB=Lock() # 锁2 class Mythread(Thread): def run(self): self 阅读全文
posted @ 2018-07-15 16:36 谢金涛 阅读(260) 评论(0) 推荐(0) 编辑