溫馨提示×

溫馨提示×

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

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

python中threading怎么開啟關閉線程

發(fā)布時間:2020-07-29 10:35:07 來源:億速云 閱讀:194 作者:小豬 欄目:開發(fā)技術

這篇文章主要講解了python中threading怎么開啟關閉線程,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

在python中啟動和關閉線程:

首先導入threading

import threading

然后定義一個方法

def serial_read():
...
...

然后定義線程,target指向要執(zhí)行的方法

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 threading實現Thread的修改值,開始,運行,停止,并獲得內部值

下面的半模版代碼在 win7+python3.63 運行通過并且實測可行,為了廣大想要實現python的多線程停止的同學

import threading
import time
class MyThread(threading.Thread):
  def __init__(self):
    threading.Thread.__init__(self)
    self.Flag=True        #停止標志位
    self.Parm=0         #用來被外部訪問的
    #自行添加參數
  
  def run(self):
    while(True):
      if(not self.Flag):
        break
      else:
        time.sleep(2)
  
  def setFlag(self,parm):     #外部停止線程的操作函數
    self.Flag=parm #boolean
 
  def setParm(self,parm):     #外部修改內部信息函數
    self.Parm=parm
 
  def getParm(self):       #外部獲得內部信息函數
    return self.Parm
 
 
if __name__=="__main__":
  testThread=MyThread()
  testThread.setDaemon(True)     #設為保護線程,主進程結束會關閉線程
  testThread.getParm()      #獲得線程內部值
  testThread.setParm(1)      #修改線程內部值
  testThread.start()       #開始線程
  print(testThread.getParm())    #輸出內部信息
  time.sleep(2)          #主進程休眠 2 秒
  testThread.setFlag(False)      #修改線程運行狀態(tài)
  time.sleep(2)          #2019.04.25 修改
  print(testThread.is_alive())  #查看線程運行狀態(tài)

于2018-08-24修正一次,修正為在繼承thread.Thread時,沒有對父類初始化

舊:

def __init__(self):
    self.Flag=True        #停止標志位
    self.Parm=0         #用來被外部訪問的
    #自行添加參數

新:

def __init__(self):
    threading.Thread.__init__(self)
    self.Flag=True        #停止標志位
    self.Parm=0         #用來被外部訪問的
    #自行添加參數

看完上述內容,是不是對python中threading怎么開啟關閉線程有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI