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

溫馨提示×

溫馨提示×

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

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

怎么在python中使用condition多線程高級鎖

發布時間:2021-05-07 16:00:44 來源:億速云 閱讀:191 作者:Leah 欄目:開發技術

怎么在python中使用condition多線程高級鎖?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

python可以做什么

Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。

多線程編程中如果使用Condition對象代替lock, 能夠實現在某個事件觸發后才處理數據, condition中含有的方法:

  • - wait:線程掛起,收到notify通知后繼續運行

  • - notify:通知其他線程, 解除其它線程的wai狀態

  • - notifyAll(): 通知所有線程

  • - acquire和release: 獲得鎖和解除鎖, 與lock類似,

  • - enter和exit使得對象支持上下文操作:

  def __enter__(self):
    return self._lock.__enter__()
  def __exit__(self, *args):
    return self._lock.__exit__(*args)

代碼:

import threading
from threading import Condition
# condition
class XiaoAi(threading.Thread):
  def __init__(self, cond):
    self.cond = cond
    super().__init__(name="xiaoai")
  def run(self):
    self.cond.acquire()
    self.cond.wait()
    print('{}:ennn. '.format(self.name))
    self.cond.notify()
    self.cond.wait()
    print('{}:好嗒. '.format(self.name))
    self.cond.release()
class TianMao(threading.Thread):
  def __init__(self, cond):
    super().__init__(name="tiaomao")
    self.cond = cond
  def run(self):
    self.cond.acquire()
    print('{}:hello ~ xiaoai. '.format(self.name))
    self.cond.notify()
    self.cond.wait()
    print('{}:我們來念一首詩吧! . '.format(self.name))
    self.cond.notify()
    self.cond.release()
if __name__ == '__main__':
  condition = Condition()
  xiaoai = XiaoAi(condition)
  tianmao = TianMao(condition)
  # 啟動順序很重要
  xiaoai.start()
  tianmao.start()

打印結果:

tiaomao:hello ~ xiaoai.
xiaoai:ennn.
tiaomao:我們來念一首詩吧! .
xiaoai:好嗒

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

山丹县| 深泽县| 屏东市| 青河县| 甘德县| 宁波市| 师宗县| 平乐县| 安丘市| 南部县| 清新县| 从化市| 青阳县| 泰顺县| 奉新县| 安泽县| 娄底市| 化隆| 上栗县| 礼泉县| 仁寿县| 稷山县| 青州市| 云林县| 海盐县| 庆元县| 聂拉木县| 灵川县| 盖州市| 四平市| 瑞丽市| 墨竹工卡县| 彩票| 焦作市| 双桥区| 沈阳市| 冀州市| 华坪县| 延庆县| 龙山县| 馆陶县|