位置: IT常识 - 正文
推荐整理分享python中condition条件变量的作用(python condition),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:python continhe,python中contiguous,python constants,python constants,python中contiguous,python constants,python conditional,python contiune,内容如对您有帮助,希望把文章链接给更多的朋友!
194
1、Python提供的Condition对象支持复杂的线程同步。
2、Condition被称为条件变量,除了提供类似Lock的acquire和release方法外,还提供wait和notify方法。线程先acquire条件变量,然后判断一些条件。
实例
importthreading,timeclassHider(threading.Thread):def__init__(self,cond,name):super(Hider,self).__init__()self.cond=condself.name=namedefrun(self):time.sleep(1)#确保先运行Seeker中的方法self.cond.acquire()#bprint(self.name+':我已经把眼睛蒙上了')self.cond.notify()self.cond.wait()#c#fprint(self.name+':我找到你了~_~')#self.cond.notify()self.cond.release()#gprint(self.name+':我赢了')#hclassSeeker(threading.Thread):def__init__(self,cond,name):super(Seeker,self).__init__()self.cond=condself.name=namedefrun(self):self.cond.acquire()self.cond.wait()#a#释放对琐的占用,同时线程挂起在这里,直到被notify并重新占有琐。#dprint(self.name+':我已经藏好了,你快来找我吧')self.cond.notify()self.cond.wait()#e#hself.cond.release()print(self.name+':被你找到了,哎~~~')cond=threading.Condition()seeker=Seeker(cond,'seeker')hider=Hider(cond,'hider')seeker.start()hider.start()以上就是python中condition条件变量的作用,希望对大家有所帮助。更多Python学习指路:Python基础教程
上一篇:phpcms的域名后期可以更改吗?(php指定域名访问)
下一篇:织梦DEDECMS专题标签channelid='-1'调用方法教程(织梦官方网站)
友情链接: 武汉网站建设