9

我不知道为什么这不起作用:

我正在使用PEP 372中的odict类,但我想将其用作成员,即:__dict__

class Bag(object):
    def __init__(self):
        self.__dict__ = odict()

但由于某种原因,我得到了奇怪的结果。这有效:

>>> b = Bag()
>>> b.apple = 1
>>> b.apple
1
>>> b.banana = 2
>>> b.banana
2

但是尝试访问实际的字典不起作用:

>>> b.__dict__.items()
[]
>>> b.__dict__
odict.odict([])

它变得更奇怪了:

>>> b.__dict__['tomato'] = 3
>>> b.tomato
3
>>> b.__dict__
odict.odict([('tomato', 3)])

我觉得非常愚蠢。你能帮我吗?

4

3 回答 3

8

我可以在http://mail.python.org/pipermail/python-bugs-list/2006-April/033155.html找到与您的问题最接近的答案。

基本上,如果__dict__不是实际的dict(),那么它会被忽略,并且属性查找会失败。

另一种方法是使用 odict 作为成员,并相应地覆盖 getitem 和 setitem 方法。

>>> class A(object) :
...     def __init__(self) :
...             self.__dict__['_odict'] = odict()
...     def __getattr__(self, value) :
...             return self.__dict__['_odict'][value]
...     def __setattr__(self, key, value) :
...             self.__dict__['_odict'][key] = value
... 
>>> a = A()
>>> a
<__main__.A object at 0xb7bce34c>
>>> a.x = 1
>>> a.x
1
>>> a.y = 2
>>> a.y
2
>>> a.odict
odict.odict([('x', 1), ('y', 2)])
于 2009-01-18T12:59:34.590 回答
4

sykora 答案中的所有内容都是正确的。这是具有以下改进的更新解决方案:

  1. a.__dict__即使在直接访问的特殊情况下也有效
  2. 支持copy.copy()
  3. 支持==!=运算符
  4. collections.OrderedDict从 Python 2.7 开始使用。

...

from collections import OrderedDict

class OrderedNamespace(object):
    def __init__(self):
        super(OrderedNamespace, self).__setattr__( '_odict', OrderedDict() )

    def __getattr__(self, key):
        odict = super(OrderedNamespace, self).__getattribute__('_odict')
        if key in odict:
            return odict[key]
        return super(OrderedNamespace, self).__getattribute__(key)

    def __setattr__(self, key, val):
        self._odict[key] = val

    @property
    def __dict__(self):
        return self._odict

    def __setstate__(self, state): # Support copy.copy
        super(OrderedNamespace, self).__setattr__( '_odict', OrderedDict() )
        self._odict.update( state )

    def __eq__(self, other):
        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        return not self.__eq__(other)
于 2012-12-27T01:30:16.507 回答
1

如果您正在寻找对 OrderedDict 具有属性访问权限的库,orderedattrdict包提供了此功能。

>>> from orderedattrdict import AttrDict
>>> conf = AttrDict()
>>> conf['z'] = 1
>>> assert conf.z == 1
>>> conf.y = 2
>>> assert conf['y'] == 2
>>> conf.x = 3
>>> assert conf.keys() == ['z', 'y', 'x']

披露:我创作了这个库。认为它可能会帮助未来的搜索者。

于 2015-09-03T14:07:06.337 回答