当前位置: 首页 > 图灵资讯 > 行业资讯> Python对象属性的查找顺序

Python对象属性的查找顺序

来源:图灵python
时间: 2024-08-21 22:26:34

1、查找顺序

(1)类和父类字典的数据描述器

(2)实例字典

(3)类和父类字典中的非数据描述器

无论类别有多少继承级别,这类对象的实例字典总是存储所有的实例变量,这也是 super 其意义之一。

2、实例

defget_attribute(obj,name):
class_definition=obj.__class__

descriptor=None
forclsinclass_definition.mro():
ifnameincls.__dict__:
descriptor=cls.__dict__[name]
break

ifhasattr(descriptor,'__set__'):
returndescriptor,'datadescriptor'

ifnameinobj.__dict__:
returnobj.__dict__[name],'instanceattribute'

ifdescriptorisnotNone:
returndescriptor,'non-datadescriptor'
else:
raiseAttributeError

以上是Python对象属性的搜索顺序,希望对大家有所帮助。更多Python学习推荐:python教学

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。