Python 強制中止多線程運行

強制中止多線程運行python

by:授客 QQ:1033553122api

 

#!/usr/bin/env python多線程

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

 

 

__author__ = 'shouke'ide

 

import threadingspa

import time線程

import inspectorm

import ctypesblog

 

 

def _async_raise(tid, exctype):utf-8

    """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')

 

再次運行,結果

 

相關文章
相關標籤/搜索