14

Python辞書に属性を追加できるかどうか疑問に思いましたか?

class myclass():
    def __init__(): 
     self.mydict = {}  # initialize a regular dict
     self.mydict.newattribute = "A description of what this dictionary will hold"
     >>> AttributeError: 'dict' object has no attribute 'newattribute'
     setattr(self.mydict, "attribute", "A description of what this dictionary will hold"
     >>> AttributeError: 'dict' object has no attribute 'newattribute'

dictクラスをコピーしたり、コンストラクターをオーバーロードしたりせずに、description属性をすばやく追加する方法はありますか?簡単だと思いましたが、間違っていたと思います。

4

1 に答える 1

33

から派生するだけですdict

class MyDict(dict):
    pass

のインスタンスはのようにMyDict動作しますが、dictカスタム属性を持つことができます。

>>> d = MyDict()
>>> d.my_attr = "whatever"
>>> d.my_attr
'whatever'
于 2012-07-17T23:06:18.853 に答える