Python 使用函数装饰器进行异常捕获

每个函数都进行异常处理非常耗时,可以尝试将异常处理抽象出来,形成装饰器:

import time
import sys

# 全局错误处理,输出报错信息:
def print_exception(func):
    def wrapper(*args, **kwargs):
        try:
            res=func(*args, **kwargs)
        except Exception as e:
            print("运行错误: " + str(repr(e)))
            sys.exit(1)    #出现异常后,结束程序运行
        return res
    return wrapper    #time_count函数的返回值为wrapper函数

@print_exception
def index():
    time.sleep(1)
    print('login')
    # i = 0 / 0		#取消注释可观察到结果
    return 123

res=index()
print('返回值res: ',res)

错误处理部分,可以具体显示出问题的行:

import time
import sys
import traceback

# 全局错误处理,输出报错信息:
def print_exception(func):
    def wrapper(*args, **kwargs):
        try:
            res=func(*args, **kwargs)
        except Exception as e:
            traceback.print_exc()
            traceback.print_exc(file=open('tb.txt','w+'))
            print(traceback.format_exc())
            sys.exit(1)
        return res
    return wrapper    #time_count函数的返回值为wrapper函数

@print_exception
def index():
    #import z
    time.sleep(1)
    print('login')
    i = 0 / 0
    return 123

res=index()
print('返回值res: ',res)

其中:

traceback.format_exc() 输出的是字符串。所以需要print。

traceback.print_exc() 直接输出,也可以追加到文件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值