python decorator用法_关于python 的@操作符 (Decorator) 的用法

'@'符号用作函数修饰符是python2.4新增加的功能,修饰符必须出现在函数定义前一行,不允许和函数定义在同一行。也就是说@A def f(): 是非法的。 只可以在模块或类定义层内对函数进行修饰,不允许修修饰一个类。一个修饰符就是一个函数,它将被修饰的函数做为参数,并返回修饰后的同名函数或其它可调用的东西。

实例(1):

def spamrun(fn):

def sayspam(*args):

print "spam,spam,spam"

return sayspam

@spamrun

def useful(a,b):

print a**2+b**2

useful(3,4)

结果:

spam,spam,spam

实例(2):

def spamrun(fn):

print "spam,spam,spam"

@spamrun

def useful(a,b):

print a**2+b**2

结果:

spam,spam,spam

实例(3):

def spamrun(fn):

def sayspam(*args):

print "spam,spam,spam"

return sayspam

@spamrun

def useful(a,b):

print a**2+b**2

useful(3,4)

结果:

spam,spam,spam

实例(4):

def addspam(fn):

def new(*args):

print "spam,spam,spam"

return fn(*args)

return new

@addspam

def useful(a,b):

print a**2+b**2

useful(4,3)

结果:

spam,spam,spam

25

追加

实例

def decorator(fn):

def test(*args):

print "My god!"*3

return fn(*args)

return test

@decorator

def other(a,b):

print a**2+b**2

if __name__=="__main__":

other(4,3)

other(3,4)

结果:

My god!My god!My god!

25

My god!My god!My god!

25

注释掉//print return fn(*args)

结果是:

My god!My god!My god!

My god!My god!My god!

要想使other函数能正常运行,必须加返回值,@decorator是一个statement,会将other函数当作参数传入来执行test方法

转载自 http://blog.sina.com.cn/s/blog_6fe87f870101d9cm.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值