当前位置: 移动技术网 > IT编程>脚本编程>Python > Python 强制停止多线程运行

Python 强制停止多线程运行

2019年04月21日  | 移动技术网IT编程  | 我要评论

筱崎爱ed2k,resample.xfm,cpb

强制停止多线程运行

by:授客 qq:1033553122

 

#!/usr/bin/env python

# -*- coding:utf-8 -*-

 

 

__author__ = 'shouke'

 

import threading

import time

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)

 

 

def test():

    try:

        while true:

            print('-------')

            time.sleep(0.5)

    except exception as e:

        print('exception:%s' % e)

    finally:

        print('stop running test function')

 

 

if __name__ == "__main__":

    t = threading.thread(target=test)

    t.start()

    time.sleep(5)

    stop_thread(t)

    print("main thread running")

    print("main thread running")

    print("main thread running")

    print("main thread running")

 

运行结果:

 

 

 

结论:

按上述方法是可以停止多线程的,但是需要注意的地方是,线程退出前,会执行try...finally中的代码,如果代码包含了多层try...finally,每一层的finally中的语句都会被执行,如下:

 

修改代码如下

def test():

    try:

        try:

            while true:

                print('-------')

                time.sleep(0.5)

        except exception as e:

            print('exception:%s' % e)

        finally:

            print('stop running test function')

        print('outer try')

    except exception:

        pass

    finally:

        print('outer try finally')

 

再次运行,结果

 

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网