• 技术文章 >常见问题 >Python常见问题

    python怎样终止线程

    yangyang2020-12-11 13:51:10原创16779

    在python中启动和关闭线程:

    一、启动线程

    首先导入threading

    1

    import threading

    然后定义一个方法

    1

    2

    3

    def serial_read():

        ...

        ...

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

    1

    myThread = threading.Thread(target=serial_read)

    启动它

    1

    myThread.start()

    二、停止线程

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    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)

    停止线程

    1

    stop_thread(myThread)

    stop方法可以强行终止正在运行或挂起的线程。

    推荐学习《Python教程

    专题推荐:python
    上一篇:python中的plt是什么 下一篇:python如何判断多维数组多少列

    相关文章推荐

    • python中如何实现加密• python如何插入音乐• python中怎么安装插件

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网