首页 > 其他 > 详细

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

时间:2017-10-29 22:52:44      阅读:317      评论:0      收藏:0      [点我收藏+]

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

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,[..)方法将类变成装饰器

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!