首頁 > 後端開發 > Python教學 > python如何關閉線程

python如何關閉線程

coldplay.xixi
發布: 2023-01-03 09:26:59
原創
19426 人瀏覽過

python關閉線程的方法:首先導入threading,定義一個方法;然後定義線程,target指向要執行的方法,啟動它;最後停止線程,程式碼為【stop_thread(myThread)】。

python如何關閉線程

本教學操作環境:windows7系統、python3.9版,DELL G3電腦。

python關閉執行緒的方法:

一、啟動執行緒

先匯入threading

import threading
登入後複製

然後定義一個方法

    def serial_read():
   ...
   ...
登入後複製

然後定義線程,target指向要執行的方法

myThread = threading.Thread(target=serial_read)
登入後複製

啟動它

myThread.start()
登入後複製

二、停止線程

#不多說了直接上程式碼

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影片教學

以上是python如何關閉線程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板