我试图理解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)