导语:
本文主要介绍了关于python怎样终止线程的相关知识,包括python 线程同步,以及python进程与线程这些编程知识,希望对大家有参考作用。
在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)
stop方法可以强行终止正在运行或挂起的线程。
推荐学习《
》
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中找到逆矩阵08/30
- ♥ 先学python还是linux10/23
- ♥ 有趣的二维码:用 MyQR 和 qrcode 制作二维码01/25
- ♥ python3.9中如何使用zoneinfo时区模块?10/19
- ♥ 如何在python中使用min函数?08/22
- ♥ python记录器的配置01/04
内容反馈