码迷,mamicode.com
首页 > 其他好文 > 详细

装饰器(带参数)

时间:2017-04-18 21:52:27      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:原理   code   int   解决   style   bsp   inner   怎么办   log   

如果明白装饰器的原理那么带参数的装饰器就很容易理解了

代码:

def s1(func):
    def inner(a,b):    #f1=inner(a,b) 接受2个参数,然后在把2个参数传递给func(a,b)
        print("hello")
        r =func(a,b)
        print("word")

        return r
    return inner
@s1
def f1(a,b):
    print(a+b)


    
f1(20,50)

 

现在有个问题如果装饰的函数有的参数是1个有的是2个怎么办?

@s1
def f1(a):
    print(a+b)


@s1
def f2(a,b):
    print(a+b)

@s1
def f3(a,b,c):
    print(a+b) 

 

解决这个很简单:

def s1(func):
    def inner(*args,**kwargs):  
        print("hello")
        r =func(*args,**kwargs)    #接受万能参数
        print("word")

        return r
    return inner
@s1
def f1(a):
    print(a)


@s1
def f2(a,b):
    print(a,b)


@s1
def f3(a,b,c):a
    print a,b,c

f1("f1===a")  #传递一个参数
f2(10,20)        #传递2个参数
f3(11,22,{"aa":"bb"})   #传递三个参数

 

装饰器(带参数)

标签:原理   code   int   解决   style   bsp   inner   怎么办   log   

原文地址:http://www.cnblogs.com/menkeyi/p/6730662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!