亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在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

诸暨市| 乌审旗| 德令哈市| 陆河县| 黄骅市| 楚雄市| 秭归县| 新兴县| 石棉县| 武隆县| 色达县| 大新县| 白玉县| 桐庐县| 新巴尔虎左旗| 依安县| 洛宁县| 湾仔区| 明溪县| 临泉县| 怀来县| 前郭尔| 临武县| 建平县| 南充市| 酉阳| 石门县| 泽库县| 古丈县| 东台市| 越西县| 江油市| 佛教| 长沙县| 房产| 汝阳县| 卫辉市| 出国| 甘肃省| 秦皇岛市| 普定县|