亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中condition條件變量有哪些作用

發布時間:2021-10-09 15:11:13 來源:億速云 閱讀:145 作者:iii 欄目:編程語言

本篇內容主要講解“python中condition條件變量有哪些作用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“python中condition條件變量有哪些作用”吧!

1、Python提供的Condition對象支持復雜的線程同步。

2、Condition被稱為條件變量,除了提供類似Lock的acquire和release方法外,還提供wait和notify方法。線程先acquire條件變量,然后判斷一些條件。

實例

import threading, time
class Hider(threading.Thread):
    def __init__(self, cond, name):
        super(Hider, self).__init__()
        self.cond = cond
        self.name = name
    def run(self):
        time.sleep(1) #確保先運行Seeker中的方法
        self.cond.acquire() #b
        print(self.name + ': 我已經把眼睛蒙上了')
        self.cond.notify()
        self.cond.wait() #c
                         #f
        print(self.name + ': 我找到你了 ~_~')
        # self.cond.notify()
        self.cond.release()
                            #g
        print(self.name + ': 我贏了')    #h
class Seeker(threading.Thread):
    def __init__(self, cond, name):
        super(Seeker, self).__init__()
        self.cond = cond
        self.name = name
    def run(self):
        self.cond.acquire()
        self.cond.wait()    #a    #釋放對瑣的占用,同時線程掛起在這里,直到被notify并重新占有瑣。
                            #d
        print(self.name + ': 我已經藏好了,你快來找我吧')
        self.cond.notify()
        self.cond.wait()    #e
                            #h
        self.cond.release()
        print(self.name + ': 被你找到了,哎~~~')
cond = threading.Condition()
seeker = Seeker(cond, 'seeker')
hider = Hider(cond, 'hider')
seeker.start()
hider.start()

到此,相信大家對“python中condition條件變量有哪些作用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

游戏| 密山市| 临城县| 乐山市| 荥经县| 青铜峡市| 延边| 化州市| 白城市| 招远市| 台北市| 通城县| 专栏| 华容县| 托里县| 建始县| 措勤县| 龙江县| 万年县| 五家渠市| 巨鹿县| 饶河县| 奉化市| 连城县| 莱芜市| 罗源县| 平原县| 霍邱县| 四平市| 和林格尔县| 兴海县| 长沙市| 龙泉市| 星座| 乡城县| 吉水县| 天津市| 和田市| 曲阜市| 林西县| 峨眉山市|