Python __dict__属性详解

Python对象管理与__dict__属性
本文深入探讨了Python中对象的管理机制,详细解析了__dict__属性的作用及其实现原理。从内置数据类型到自定义类,再到继承过程中的__dict__属性表现,全面阐述了Python对象的存储方式。

在这里插入图片描述
由此可见, 类的静态函数、类函数、普通函数、全局变量以及一些内置的属性都是放在类__dict__里的

对象的__dict__中存储了一些属性

我们都知道Python一切皆对象,那么Python究竟是怎么管理对象的呢?

1、无处不在的__dict__

  首先看一下类的__dict__属性和类对象的__dict__属性

复制代码
# -*- coding: utf-8 -*-

class A(object):
“”"
Class A.
“”"

a </span>=<span style="color: #000000;"> 0
b </span>= 1

<span style="color: #0000ff;">def</span> <span style="color: #800080;">__init__</span><span style="color: #000000;">(self):
    self.a </span>= 2<span style="color: #000000;">
    self.b </span>= 3

<span style="color: #0000ff;">def</span><span style="color: #000000;"> test(self):
    </span><span style="color: #0000ff;">print</span> <span style="color: #800000;">'</span><span style="color: #800000;">a normal func.</span><span style="color: #800000;">'</span><span style="color: #000000;">

@staticmethod
</span><span style="color: #0000ff;">def</span><span style="color: #000000;"> static_test(self):
    </span><span style="color: #0000ff;">print</span> <span style="color: #800000;">'</span><span style="color: #800000;">a static func.</span><span style="color: #800000;">'</span><span style="color: #000000;">

@classmethod
</span><span style="color: #0000ff;">def</span><span style="color: #000000;"> class_test(self):
    </span><span style="color: #0000ff;">print</span> <span style="color: #800000;">'</span><span style="color: #800000;">a calss func.</span><span style="color: #800000;">'</span><span style="color: #000000;">

obj = A()
print A.dict
print obj.dict

复制代码

   运行结果如下:

复制代码
{'a': 0, '__module__': '__main__', 'b': 1, 'class_test': <classmethod object at 0x00000000021882E8>, '__dict__': <attribute '__dict__' of 'A' objects>, '__init__': <function __init__ at 0x00000000023A5BA8>, 'test': <function test at 0x00000000023A5C18>, '__weakref__': <attribute '__weakref__' of 'A' objects>, '__doc__': '\n    Class A.\n    ', 'static_test': <staticmethod object at 0x00000000021881C8>}
{'a': 2, 'b': 3}
复制代码

 

  由此可见, 类的静态函数、类函数、普通函数、全局变量以及一些内置的属性都是放在类__dict__里的

  对象的__dict__中存储了一些self.xxx的一些东西

2、Python里什么没有__dict__属性

  虽然说一切皆对象,但对象也有不同,就好比不是每个人的女朋友都是一个人一样,一些内置的数据类型是没有__dict__属性的,如下:

复制代码
num = 3
ll = []
dd = {}
print num.__dict__
print ll.__dict__
print dd.__dict__
复制代码

 

  当我们运行这样的代码时,解释器就会告诉我们

复制代码
Traceback (most recent call last):
  File "f:\python\test.py", line 54, in <module>
    print num.__dict__
AttributeError: 'int' object has no attribute '__dict__'

Traceback (most recent call last):
File “f:\python\test.py”, line 55, in <module>
print ll.dict
AttributeError: ‘list’ object has no attribute ‘dict

Traceback (most recent call last):
File “f:\python\test.py”, line 56, in <module>
print dd.dict
AttributeError: ‘dict’ object has no attribute ‘dict

复制代码

  int, list, dict等这些常用的数据类型是没有__dict__属性的,其实这是可预料的,就算给了它们dict属性也没啥用,毕竟它们只是用来做数据容器的。

3、发生继承时候的__dict__属性

  子类有自己的__dict__, 父类也有自己的__dict__,子类的全局变量和函数放在子类的dict中,父类的放在父类dict中。

复制代码
# -*- coding: utf-8 -*-

class Parent(object):
a = 0
b = 1

<span style="color: #0000ff;">def</span> <span style="color: #800080;">__init__</span><span style="color: #000000;">(self):
    self.a </span>= 2<span style="color: #000000;">
    self.b </span>= 3

<span style="color: #0000ff;">def</span><span style="color: #000000;"> p_test(self):
    </span><span style="color: #0000ff;">pass</span>

class Child(Parent):
a = 4
b = 5

<span style="color: #0000ff;">def</span> <span style="color: #800080;">__init__</span><span style="color: #000000;">(self):
    super(Child, self).</span><span style="color: #800080;">__init__</span><span style="color: #000000;">()
    # self.a </span>= 6<span style="color: #000000;">
    # self.b </span>= 7

<span style="color: #0000ff;">def</span><span style="color: #000000;"> c_test(self):
    </span><span style="color: #0000ff;">pass</span>

<span style="color: #0000ff;">def</span><span style="color: #000000;"> p_test(self):
    </span><span style="color: #0000ff;">pass</span><span style="color: #000000;">

p = Parent()
c = Child()
print Parent.dict
print Child.dict
print p.dict
print c.dict

复制代码

  运行上面的代码,结果入下:

复制代码
{'a': 0, '__module__': '__main__', 'b': 1, '__dict__': <attribute '__dict__' of 'Parent' objects>, 'p_test': <function p_test at 0x0000000002325BA8>, '__weakref__': <attribute '__weakref__' of 'Parent' objects>, '__doc__': None, '__init__': <function __init__ at 0x0000000002325B38>}
{'a': 4, 'c_test': <function c_test at 0x0000000002325C88>, '__module__': '__main__', 'b': 5, 'p_test': <function p_test at 0x0000000002325CF8>, '__doc__': None, '__init__': <function __init__ at 0x0000000002325C18>}
{'a': 2, 'b': 3}
{'a': 2, 'b': 3}
复制代码

 

  1)上段输出结果中,用红色字体标出的是类变量和函数,由结果可知,每个类的类变量、函数名都放在自己的__dict__中

  2) 再来看一下实力变量的__dict__中,由蓝色字体标识,父类和子类对象的__dict__是公用的

总结:

  1) 内置的数据类型没有__dict__属性

  2) 每个类有自己的__dict__属性,就算存着继承关系,父类的__dict__ 并不会影响子类的__dict__

  3) 对象也有自己的__dict__属性, 存储self.xxx 信息,父子类对象公用__dict__

 

![在这里插入图片描述](https://img-blog.csdnimg.cn/20191120153019441.jpg)
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值