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

类装饰器

时间:2019-01-16 00:22:38      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:__call__   __init__   UNC   ini   int   用法   *args   name   sel   

 __call__的用法

class Test(object):
    def __call__(self):
        print("---call---")
t = Test()
t()

  输出

---call---

  

 类装饰器

class Test(object):
    def __init__(self,func):
        self.__func = func
        print("func name is %s"%func.__name__)
    def __call__(self, *args, **kwargs):
        self.__func()
#这里的@Test相当于test = Test(test)
@Test 
def test():
    print("---test---")

test()

  输出

func name is test
---test---

  

类装饰器

标签:__call__   __init__   UNC   ini   int   用法   *args   name   sel   

原文地址:https://www.cnblogs.com/xone/p/10274899.html

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