python面向对象---- item系列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python面向对象---- item系列相关的知识,希望对你有一定的参考价值。

具体用法:

class Foo:
    def __getitem__(self, item):
        print(=====>get)
        return self.__dict__[item]

    def __setitem__(self, key, value):
        print(====set)
        self.__dict__[key]=value #等同于setattr(self,key,value)

    def __delitem__(self, key):
        print(====del)
        self.__dict__.pop(key)


f=Foo()


f[x]=123123123123  #这种访问方式能对应到类中的__setitem__方法。

# del f[‘x‘]  #这种方式能对应到类中的__delitem__方法。

print(f[x])
#这种方式访问能对应到类中的__getitem__的方法。

 

以上是关于python面向对象---- item系列的主要内容,如果未能解决你的问题,请参考以下文章

python-面向对象之item系列(__getitem__,__setitem__,__delitem__)

Python基础(18)_面向对象程序设计2(反射__str____del____item__系列)

十.python面向对象(itme)

面向对象基础

Python全栈之路系列----之-----面向对象

自动化运维Python系列之面向对象