为什么我可以重新分配 dict.update 而不是 dict.__setitem__

我正在尝试修改第三方dict类以使其在某个时间点后不可变。对于大多数类,我可以分配给方法槽来修改行为。但是,这似乎不适用于所有类中的所有方法。特别是对于dict,我可以重新分配update,但不能__setitem__。


为什么?它们有何不同?


例如:


class Freezable(object):

    def _not_modifiable(self, *args, **kw):

        raise NotImplementedError()


    def freeze(self):

        """

        Disallow mutating methods from now on.

        """

        print "FREEZE"

        self.__setitem__ = self._not_modifiable

        self.update = self._not_modifiable

        # ... others

        return self


class MyDict(dict, Freezable):

    pass


d = MyDict()

d.freeze()

print d.__setitem__  # <bound method MyDict._not_modifiable of {}>


d[2] = 3         # no error  -- this is incorrect.


d.update({4:5})  # raise NotImplementedError


繁星点点滴滴
浏览 127回答 1
1回答

人到中年有点甜

请注意,您可以定义class __setitem__,例如:def __setitem__(self, key, value):&nbsp; &nbsp; if self.update is Freezable._not_modifiable:&nbsp; &nbsp; &nbsp; &nbsp; raise TypeError('{} has been frozen'.format(id(self)))&nbsp; &nbsp; dict.__setitem__(self, key, value)(这个方法有点笨拙;还有其他选择。但即使 Python__setitem__直接调用类,它也是一种使它工作的方法。)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python