中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

python線程通信Condition提供的方法有哪些

發布時間:2022-05-23 16:36:56 來源:億速云 閱讀:159 作者:iii 欄目:大數據

這篇文章主要介紹“python線程通信Condition提供的方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“python線程通信Condition提供的方法有哪些”文章能幫助大家解決問題。

1、acquire調用Condition關聯的方法。

Lock的acquire()或release()。

2、wait傳入timeout參數。

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

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

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

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

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

實例

import threading
class Account:
    # 定義構造函數
    def __init__(self, account_no, balance):
        self.account_no = account_no
        self._balance = balance
        self.condition = threading.Condition()
        # 定義代表是否已經存錢的標識
        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")
                # 將標識賬戶已有存款的標識改成False
                self.__deposit_flag = False
                # 喚醒其他等待現車線程
                self.condition.notify_all()
        finally:
            # 釋放鎖
            self.condition.release()
 
    # 存錢
    def deposit(self, deposit_amount):
        # 加鎖
        self.condition.acquire()
        try:
            # 如果已經存款了,則等待取款
            if self.__deposit_flag:
                self.condition.wait()
            else:
                self._balance = self._balance + deposit_amount
                print(threading.current_thread().getName() + " 存款成功,存款金額是:" + str(deposit_amount) + "\n")
                # 將存款標識改成已存款
                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)
 
 
# 創建一個賬戶
account = Account("賬戶一", 0)
# 創建并啟動取錢線程
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()
# 創建并啟動存錢線程
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()

關于“python線程通信Condition提供的方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

革吉县| 神池县| 城口县| 巨鹿县| 阳新县| 隆化县| 高雄市| 慈利县| 黑水县| 延吉市| 临西县| 潼南县| 承德县| 瑞金市| 兴业县| 天峻县| 大港区| 上虞市| 福安市| 阳东县| 丹巴县| 金塔县| 洛隆县| 正定县| 墨玉县| 镇康县| 三原县| 仲巴县| 荔波县| 五河县| 霍林郭勒市| 三江| 尉犁县| 临高县| 惠来县| 太仆寺旗| 北安市| 湟中县| 兴国县| 黄平县| 乌拉特中旗|