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

使用__call__(self,[..)方法将类变成装饰器

时间:2017-10-29 23:19:33      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:temp   describe   obj   nts   images   .com   sel   argument   target   

这里我就用一个例子和执行图来解释了

class Describer(object):

    def __init__(self, name):
        self.name = name

    def __call__(self, func):  # func 是 Foo().foo
        print im Describer call

        def inner(foo_self, *args):  # foo_self是Foo()对象
            print foo_self.name
            return func(foo_self, *args)

        return inner


class Foo(object):

    def __init__(self):
        self.name = www

    @Describer(zhn)  # 相当于 temp = Describer(__init__); inner = temp__call__(foo); func_result = inner(foo_self, *args)
    def foo(self):
        return im Foo instance foo


f = Foo()
print f.foo()

result:

im Describer call
www
im Foo instance foo

f.foo() 相当于

temp = Describer(‘zhn’);

inner = temp__call__(foo);

func_result = inner(foo_self, *args)

 

程序执行图

技术分享

参考

Python Decorators II: Decorator Arguments by Bruce Eckel 地址

 

使用__call__(self,[..)方法将类变成装饰器

标签:temp   describe   obj   nts   images   .com   sel   argument   target   

原文地址:http://www.cnblogs.com/fuzzier/p/7751483.html

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