前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python中threading开启关闭线程

python中threading开启关闭线程

作者头像
kirin
发布2020-11-13 10:40:52
1.6K0
发布2020-11-13 10:40:52
举报
文章被收录于专栏:Kirin博客

在python中启动和关闭线程: 一、启动线程 首先导入threading

代码语言:javascript
复制
import threading

然后定义一个方法

代码语言:javascript
复制
    def serial_read():
   		...
   		...

然后定义线程,target指向要执行的方法

代码语言:javascript
复制
myThread = threading.Thread(target=serial_read)

启动它

代码语言:javascript
复制
myThread.start()

二、停止线程 不多说了直接上代码

代码语言:javascript
复制
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)

停止线程

代码语言:javascript
复制
stop_thread(myThread)
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/11/10 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档