91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

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

這篇文章主要介紹“python線程通信Condition的實例用法介紹”,在日常操作中,相信很多人在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

启东市| 永嘉县| 正定县| 青岛市| 汾阳市| 灵石县| 怀仁县| 台东县| 阜新| 民和| 怀宁县| 广饶县| 安国市| 浑源县| 福海县| 湘乡市| 长岭县| 仪征市| 合山市| 灵宝市| 伊通| 菏泽市| 平山县| 黄冈市| 巴彦淖尔市| 长寿区| 阳原县| 福州市| 徐闻县| 策勒县| 洛浦县| 寿阳县| 额尔古纳市| 泗阳县| 嵊州市| 长岛县| 绥滨县| 林口县| 安国市| 桃园市| 安龙县|