8.python之面相对象part.7(__setitem__,__getitem,__delitem__)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8.python之面相对象part.7(__setitem__,__getitem,__delitem__)相关的知识,希望对你有一定的参考价值。

obj[xxx] = "xx" 这种操作会触发对象的__setitem__方法。

del obj["xxx"] 这种操作会触发对象的__delitem__方法。

obj["xxx"] 触发对象的__getitem__方法。




class Foo:

    def __init__(self,name):

        self.name=name

    def __getitem__(self, item):

        print(self.__dict__[item])

    def __setitem__(self, key, value):

        self.__dict__[key]=value

    def __delitem__(self, key):

        print(‘del obj[key]时,我执行‘)

        self.__dict__.pop(key)

    def __delattr__(self, item):

        print(‘del obj.key时,我执行‘)

        self.__dict__.pop(item)

f1=Foo(‘sb‘)

f1[‘age‘]=18

f1[‘age1‘]=19

del f1.age1

del f1[‘age‘]

f1[‘name‘]=‘aaa‘

print(f1.__dict__)


本文出自 “reBiRTH” 博客,请务必保留此出处http://suhaozhi.blog.51cto.com/7272298/1918007

以上是关于8.python之面相对象part.7(__setitem__,__getitem,__delitem__)的主要内容,如果未能解决你的问题,请参考以下文章

8.python之面相对象part.8(__slots__属性)

8.python之面相对象part.6(反射&__call__,__setattr__,__delattr__,__getattr__)

8.python之面相对象part.5(子类调用父类的方法,以及super关键字)

8.python之面相对象part.2(特殊属性,类方法,静态方法)

8.python之面相对象part.6(python类中的多态与多态性)

8.python之面相对象part.8(类装饰器)