Python 的 __get__描述符

2018-11-24 17:37:06 +08:00
 fanhaipeng0403


""""

https://www.jb51.net/article/86749.htm
https://python3-cookbook.readthedocs.io/zh_CN/latest/c08/p09_create_new_kind_of_class_or_instance_attribute.html


"""
class C(object):
    """
   存在了__get__的方法的类称之为描述符类

    descriptor 的实例自己访问自己是不会触发__get__,而会触发__call__,只有 descriptor 作为其它类的属性的时候才会触发 __get___
    """
    a = 'abc'

    def __get__(self, instance, owner):
        print("__get__() is called", instance, owner)
        return self



class C2(object):
    # 为了使用一个描述器,需将这个描述器的实例作为类属性放到一个类的定义中.
    d = C()  # descriptor 的实例自己访问自己是不会触发__get__,而会触发__call__,只有 descriptor 作为其它类的属性的时候才会触发 __get___


if __name__ == '__main__':
    # 不触发
    c = C()
    print(c.a)

    # 触发
    c2 = C2()
    print(c2.d.a)

1445 次点击
所在节点    Python
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/511140

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX