gpt4 book ai didi

Python线程条件变量Condition原理解析

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Python线程条件变量Condition原理解析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

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

Condition 对象就是条件变量,它总是与某种锁相关联,可以是外部传入的锁或是系统默认创建的锁。当几个条件变量共享一个锁时,你就应该自己传入一个锁。这个锁不需要你操心,Condition 类会管理它.

acquire() 和 release() 可以操控这个相关联的锁。其他的方法都必须在这个锁被锁上的情况下使用。wait() 会释放这个锁,阻塞本线程直到其他线程通过 notify() 或 notify_all() 来唤醒它。一旦被唤醒,这个锁又被 wait() 锁上.

经典的 consumer/producer 问题的代码示例为:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import threading
import time
import logging
 
logging.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.cnblogs.com/dylancao/p/12208923.html 。

最后此篇关于Python线程条件变量Condition原理解析的文章就讲到这里了,如果你想了解更多关于Python线程条件变量Condition原理解析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com