溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python實(shí)現(xiàn)條件變量同步的方法

發(fā)布時(shí)間:2020-08-06 09:59:07 來(lái)源:億速云 閱讀:140 作者:小新 欄目:編程語(yǔ)言

這篇文章給大家分享的是有關(guān)Python實(shí)現(xiàn)條件變量同步的方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。

條件變量同步

有一類線程需要滿足條件之后才能夠繼續(xù)執(zhí)行,Python提供了threading.Condition 對(duì)象用于條件變量線程的支持,它除了能提供RLock()或Lock()的方法外,還提供了 wait()、notify()、notifyAll()方法。

lock_con=threading.Condition([Lock/Rlock]): 鎖是可選選項(xiàng),不傳人鎖,對(duì)象自動(dòng)創(chuàng)建一個(gè)RLock()。

wait():條件不滿足時(shí)調(diào)用,線程會(huì)釋放鎖并進(jìn)入等待阻塞;

notify():條件創(chuàng)造后調(diào)用,通知等待池激活一個(gè)線程;

notifyAll():條件創(chuàng)造后調(diào)用,通知等待池激活所有線程。

import threading, time
from random import randint
class Producer(threading.Thread):
    def run(self):
        global L
        while True:
            val = randint(0, 100)
            print('生產(chǎn)者', self.name, ':Append'+str(val),L)
            if lock_con.acquire():
                L.append(val)
                lock_con.notify()
                lock_con.release()
            time.sleep(3)
class Consumer(threading.Thread):
    def run(self):
        global L
        while True:
            lock_con.acquire()
            if len(L) == 0:
                lock_con.wait()
            print('消費(fèi)者', self.name, ":Delete" + str(L[0]), L)
            del L[0]
            lock_con.release()
            time.sleep(0.25)
if __name__ == "__main__":
    L = []
    lock_con = threading.Condition()
    threads = []
    for i in range(5):
        threads.append(Producer())
    threads.append(Consumer())
    for t in threads:
        t.start()
    for t in threads:
        t.join()
    print('---- end ----')

運(yùn)行結(jié)果:

生產(chǎn)者 Thread-1 :Append63 []
生產(chǎn)者 Thread-2 :Append66 [63]
生產(chǎn)者 Thread-3 :Append20 [63, 66]
生產(chǎn)者 Thread-4 :Append83 [63, 66, 20]
生產(chǎn)者 Thread-5 :Append2 [63, 66, 20, 83]
生產(chǎn)者 Thread-4 :Append26 []
消費(fèi)者 Thread-6 :Delete26 [26]
生產(chǎn)者 Thread-2 :Append21 []
生產(chǎn)者 Thread-3 :Append71 [21]
生產(chǎn)者 Thread-1 :Append19 [21, 71]
生產(chǎn)者 Thread-5 :Append100 [21, 71, 19]
生產(chǎn)者 Thread-1 :Append96 []
消費(fèi)者 Thread-6 :Delete96 [96]
........

感謝各位的閱讀!關(guān)于Python實(shí)現(xiàn)條件變量同步的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI