返回顶部
首页 > 资讯 > 后端开发 > Python >Python线程条件变量Condition解析
  • 930
分享到

Python线程条件变量Condition解析

2023-06-02 00:06:38 930人浏览 安东尼

Python 官方文档:入门教程 => 点击学习

摘要

这篇文章主要介绍了Python线程条件变量Condition原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下这篇文章主要介绍了python线程条件变量Condition原理解析,文中

这篇文章主要介绍了Python线程条件变量Condition原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

这篇文章主要介绍了python线程条件变量Condition原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
Condition 对象就是条件变量,它总是与某种相关联,可以是外部传入的锁或是系统默认创建的锁。当几个条件变量共享一个锁时,你就应该自己传入一个锁。这个锁不需要你操心,Condition 类会管理它。
acquire() 和 release() 可以操控这个相关联的锁。其他的方法都必须在这个锁被锁上的情况下使用。wait() 会释放这个锁,阻塞本线程直到其他线程通过 notify() 或 notify_all() 来唤醒它。一旦被唤醒,这个锁又被 wait() 锁上。
经典的 consumer/producer 问题的代码示例为:

import threadingimport timeimport logginglogging.basicConfig(level=logging.DEBUG,fORMat='(%(threadName)-9s) %(message)s',)def consumer(cv):logging.debug('Consumer thread started ...')with cv:logging.debug('Consumer waiting ...')cv.acquire()cv.wait()logging.debug('Consumer consumed the resource')cv.release()def producer(cv):logging.debug('Producer thread started ...')with cv:cv.acquire()logging.debug('Making resource available')logging.debug('Notifying to all consumers')cv.notify()cv.release()if __name__ == '__main__':condition = threading.Condition()cs1 = threading.Thread(name='consumer1', target=consumer, args=(condition,))#cs2 = threading.Thread(name='consumer2', target=consumer, args=(condition,state))pd = threading.Thread(name='producer', target=producer, args=(condition,))cs1.start()time.sleep(2)#cs2.start()#time.sleep(2)pd.start()

以上就是本文的全部内容,希望对大家的学习有所帮助

原文地址:https://www.linuxprobe.com/Python-condition-parsing.html

--结束END--

本文标题: Python线程条件变量Condition解析

本文链接: https://lsjlt.com/news/228221.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作