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

溫馨提示×

溫馨提示×

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

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

python3關閉線程的方法

發布時間:2020-07-01 16:33:56 來源:億速云 閱讀:507 作者:清晨 欄目:編程語言

這篇文章主要介紹python3關閉線程的方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

python3利用異常來退出當前線程。方法:1.利用raise自定義異常,2.當觸發函數stop_thread時調用自定義異常進行退出。

python3關閉線程的方法

利用異常使線程退出代碼如下:

import inspect
import ctypes
def _async_raise(tid, exctype):
  """raises the exception, performs cleanup if needed"""
  tid = ctypes.c_long(tid)
  if not inspect.isclass(exctype):
    exctype = type(exctype)
  res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
  if res == 0:
    raise ValueError("invalid thread id")
  elif res != 1:
    # """if it returns a number greater than one, you're in trouble,
    # and you should call it again with exc=NULL to revert the effect"""
    ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
    raise SystemError("PyThreadState_SetAsyncExc failed")
def stop_thread(thread):
  _async_raise(thread.ident, SystemExit)

停止線程

stop_thread(myThread)

補充知識:python threading實現Thread的修改值,開始,運行,停止,并獲得內部值

以上是python3關閉線程的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

泉州市| 夏河县| 来宾市| 都兰县| 时尚| 马关县| 望都县| 郎溪县| 乌拉特中旗| 昂仁县| 宜阳县| 海口市| 冀州市| 皮山县| 石城县| 灵石县| 荔波县| 电白县| 白水县| 嵊泗县| 武功县| 北川| 德令哈市| 揭阳市| 库车县| 商丘市| 抚远县| 章丘市| 华池县| 渑池县| 延寿县| 湟源县| 临湘市| 宁德市| 大悟县| 保靖县| 深泽县| 达州市| 南陵县| 台中市| 莱阳市|