溫馨提示×

溫馨提示×

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

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

python線程通信Condition的實例用法介紹

發(fā)布時間:2021-09-08 16:36:23 來源:億速云 閱讀:296 作者:chen 欄目:編程語言

這篇文章主要介紹“python線程通信Condition的實例用法介紹”,在日常操作中,相信很多人在python線程通信Condition的實例用法介紹問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python線程通信Condition的實例用法介紹”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

1、acquire調(diào)用Condition關(guān)聯(lián)的方法。

Lock的acquire()或release()。

2、wait傳入timeout參數(shù)。

指定該線程最多等待多少秒。

導(dǎo)致當(dāng)前線程進(jìn)入Condition的等待池等待通知并釋放鎖,直到其他線程調(diào)用該Condition的notify()或者notify_all()方法來喚醒該線程。在調(diào)用該wait()方法時可以

3、notify喚醒Condition的單個線程并通知。

收到通知的線程會自動調(diào)用accquire()方法嘗試加鎖。如果所有線程都在該Condition等待池中等待,則會選擇喚醒其中一個線程,選擇是任意性的。

4、notify_all喚醒所有線程并通知。

實例

import threading
class Account:
    # 定義構(gòu)造函數(shù)
    def __init__(self, account_no, balance):
        self.account_no = account_no
        self._balance = balance
        self.condition = threading.Condition()
        # 定義代表是否已經(jīng)存錢的標(biāo)識
        self.__deposit_flag = False
 
    # 取錢
    def draw(self, draw_amount):
        # 加鎖
        self.condition.acquire()
        try:
            # 還沒存錢
            if not self.__deposit_flag:
                self.condition.wait()
            else:
                if self._balance >= draw_amount:
                    self._balance = self._balance - draw_amount
                    print(threading.current_thread().getName() + " 取錢成功,賬戶余額是:" + str(self._balance) + "\n")
                else:
                    print(threading.current_thread().getName() + " 取錢失敗\n")
                # 將標(biāo)識賬戶已有存款的標(biāo)識改成False
                self.__deposit_flag = False
                # 喚醒其他等待現(xiàn)車線程
                self.condition.notify_all()
        finally:
            # 釋放鎖
            self.condition.release()
 
    # 存錢
    def deposit(self, deposit_amount):
        # 加鎖
        self.condition.acquire()
        try:
            # 如果已經(jīng)存款了,則等待取款
            if self.__deposit_flag:
                self.condition.wait()
            else:
                self._balance = self._balance + deposit_amount
                print(threading.current_thread().getName() + " 存款成功,存款金額是:" + str(deposit_amount) + "\n")
                # 將存款標(biāo)識改成已存款
                self.__deposit_flag = True
                # 喚醒其他線程
                self.condition.notify_all()
        finally:
            # 釋放鎖
            self.condition.release()
 
 
def draw_many(account, draw_amount, max):
    for i in range(max):
        account.draw(draw_amount)
 
 
def deposit_many(account, deposit_amount, max):
    for i in range(max):
        account.deposit(deposit_amount)
 
 
# 創(chuàng)建一個賬戶
account = Account("賬戶一", 0)
# 創(chuàng)建并啟動取錢線程
draw_1 = threading.Thread(name='取錢者一', target=draw_many, args=(account, 200, 50))
draw_1.start()
draw_2 = threading.Thread(name='取錢者二', target=draw_many, args=(account, 200, 50))
draw_2.start()
# 創(chuàng)建并啟動存錢線程
deposit_1 = threading.Thread(name='存錢者一', target=deposit_many, args=(account, 200, 50))
deposit_1.start()
deposit_2 = threading.Thread(name='存錢者二', target=deposit_many, args=(account, 200, 50))
deposit_2.start()
draw_1.join()
draw_2.join()
deposit_1.join()
deposit_2.join()

到此,關(guān)于“python線程通信Condition的實例用法介紹”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

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

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

AI