理解束模式和自我.__ dict__

时间:2013-04-28 12:05:49

标签: python

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

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

用法:

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

我理解更新对dict做了什么:

dict1.update(dict2)

将dict2(name:value pairs)的内容添加到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']
>>> 

最后,我如何使用点运算符访问束类中的属性'name'?

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

1 个答案:

答案 0 :(得分:6)

类具有由字典对象实现的命名空间。类属性引用被转换为此字典中的查找,例如,C.x已转换为C.__dict__["x"]

来自Data Model (Python Docs)