1

我试图理解python中的束模式,我相信可以用以下方式表示:

class Bunch:
    def __init__(self, **kwds):
        self.__dict__.update(kwds)

用法:

bunch = Bunch(name='Loving the bunch class')
print(bunch.name)

我了解更新对字典的作用:

dict1.update(dict2)

将 dict2(name:value 对) 的内容添加到 dict1。我的问题来了:

什么是“__dict__”?为什么它没有显示在对象的目录中,而它显示在 hasattr() 中?例如:

>>> class test:
    def __init__(self, a):
    self.a = a


>>> t = test(10)


>>> t.__dict__
{'a': 10}
>>> hasattr(t, "a")
True  
>>> hasattr(t, "__dict__")
True
>>> dir(t)
['__doc__', '__init__', '__module__', 'a']
>>> 

最后,我如何能够使用点运算符访问束类中的属性“名称”?

bunch = Bunch(name='Loving the bunch class')
print(bunch.name)
4

1 回答 1

6

一个类有一个由字典对象实现的命名空间。类属性引用被翻译成这个字典中的查找,例如,C.x被翻译成C.__dict__["x"]

来自数据模型(Python 文档)

于 2013-04-28T12:20:13.303 回答