python 装饰器

Python装饰器

如果要增强某一函数的功能,但又不希望修改原函数的定义,这种在代码运行期间动态增加功能的方式,称之为“装饰器”(Decorator)。写代码需要遵循开放封闭原则,已经实现的功能代码不允许被修改,但可以被扩展

例如要给func函数增加一功能,只需定义一个login装饰器即可

def login(func):
    def inner(arg,arg1):
        print('login')
        return func(arg,arg1)
    return inner

@login       #此次相当于执行了func=login(func)
def func(arg,arg1):
    print('func: %s -- %s'%(arg,arg1))

func('hello','world')

运行结果:

login

func: hello -- world

 

如果decorator本身需要传入参数,那就需要编写一个返回decorator的高阶函数


def login(txt):
    def outer(func):
        def inner(arg,arg1):
            print(txt)
            return func(arg,arg1)
        return inner
    return outer

@login('hehe') #装饰器带参数

#第一步执行login('hehe')

#第二步执行@outer(func)
def func(arg,arg1):
    print('func: %s -- %s'%(arg,arg1))

func('hello','world')

运行结果:

hehe

func: hello -- world

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值