GETATTR,DELATTR,SETATTR与GETITEM,SETITEM,DELITEM区别

Posted konglinqingfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GETATTR,DELATTR,SETATTR与GETITEM,SETITEM,DELITEM区别相关的知识,希望对你有一定的参考价值。


class Foo:
    def __getitem__(self, item):
        print('getitem', item)
        return self.__dict__[item]

    def __setitem__(self, key, value):
        print('setitem')
        self.__dict__[key] = value

    def __delitem__(self, key):
        print('delitem')
        self.__dict__.pop(key)

f1 = Foo()
# f1.name='alex'
f1['name']='alex'
f1['age']='222'
print(f1.__dict__)

# del f1.name
# print(f1.__dict__)
#没有触发打印,因为通过对象.属性的方式触发的是__getattr__,__delattr__,__setattr__
#通过对象['属性']触发__getitem__,__setitem__,__delitem__

del f1['name']
print(f1.__dict__)

# f1['age']
print(f1['age'])

以上是关于GETATTR,DELATTR,SETATTR与GETITEM,SETITEM,DELITEM区别的主要内容,如果未能解决你的问题,请参考以下文章

__setattr__和__delattr__和__getattr__

Python hasattr,getattr,setattr,delattr

python基础之类的__setattr__,__delattr__,__getattr__

__setattr__,__delattr__,__getattr__

__getattr__,getattribute,setattr,delattr的区别

反射getattr,hasattr,setattr,delattr