Python类的动态绑定实现原理

作者:luoheng 时间:2022-05-02 00:52:03 

使用实例引用类的属性时,会发生动态绑定。即python会在实例每次引用类属性时,将对应的类属性绑定到实例上。

动态绑定的例子:


class A:
 def test1(self):
   print("hello")

def test2(self):
   print("world")

def bound():
 a = A()
 a.test1()
 A.test1 = A.test2
 a.test1()

if __name__ == "__main__":
 bound()

输出结果:

hello2 world

从上述代码中可以看到,类方法的变化是实时影响实例对方法的调用的,这说明python是在实例调用方法的过程中动态地查找类方法。

动态绑定的代价:


class A:
 def test(self):
   pass
def one_loop(limited_time):
 a = A()
 for i in range(limited_time):
   a.test()
 f = a.test
 for i in range(limited_time):
   f()

上图两个循环中,一个调用a.test(),不断进行动态绑定,另一个则先把a.test赋值给f,只有一次动态绑定,通过对两个循环计时,测试动态绑定的代价。

输出结果:

Python类的动态绑定实现原理

1 [0.0, 0.0, 0.0, 0.0, 0.0, 0.0009999275207519531, 0.008995771408081055, 0.19991111755371094, 1.2715933322906494, 15.831915855407715]
2 [0.0, 0.0, 0.0, 0.0, 0.0, 0.12503726671039295, 0.09472344399590288, 0.1999776288967874, 0.131608969147562, 0.1553209370384522]

折线图中横坐标为log10(循环次数),纵坐标为秒数。

输出数据中,第一行为动态绑定和一次绑定耗费时间的差值,第二行为差值占动态绑定总时间的比例。

可以看出,在次数很小的时候,两者基本没有差距,或者说差距忽略不计。

在10^7次循环,即千万次循环的时候,动态绑定与静态绑定的耗费时间才出现了明显差异,当循环次数达到十亿级的时候,耗费时间相差15秒之多,约占总时间的15%。

由上可知,动态绑定效率低于静态绑定,但由于绑定代价耗时很少,在次数很少的时候基本没有影响。

动态绑定的优点:


class A:
 def test_hello(self):
   print("hello")

def test_world(self):
 print("world")

def main():
 s = A()
 # 提前绑定
 f = s.test_hello
 # 改变方法
 A.test_hello = test_world
 f()
 # 动态绑定
 s.test_hello()

if __name__ == "__main__":
 main()

输出结果:

hello2 world

类方法的变动能够实时反应在动态绑定上,而提前绑定则无法感知到类方法的变动。

总结:

1. 一次动态绑定代价很小,当绑定次数少的时候基本不影响效率,当绑定次数达到千万级时影响才会很显著。

2. 动态绑定实时跟踪类方法的变动,更具灵活性。

来源:https://www.cnblogs.com/luoheng23/p/10989435.html

标签:Python,类,动态,绑定
0
投稿

猜你喜欢

  • Python json模块dumps、loads操作示例

    2023-01-03 20:16:29
  • 使用python制作游戏下载进度条的代码(程序说明见注释)

    2023-06-15 00:39:52
  • HTML:scrollLeft,scrollWidth,clientWidth,offsetWidth完全详解

    2024-04-22 22:25:25
  • mysql数据库单表最大存储依据详解

    2024-01-16 03:02:24
  • JavaScript中的this/call/apply/bind的使用及区别

    2023-09-15 06:23:19
  • 如何在Python里使用ChatGPT及ChatGPT是什么?注册方式?

    2022-12-01 22:43:12
  • python多线程实现动态图绘制

    2023-10-22 21:53:53
  • 你是真正的用户体验设计者吗? Ⅰ

    2008-03-20 13:42:00
  • ajax Google PageRank3(PR值)查询源代码

    2007-11-04 13:31:00
  • Python的条件语句与运算符优先级详解

    2023-06-21 07:43:49
  • Spring Boot如何解决Mysql断连问题

    2024-01-14 23:52:42
  • python 如何停止一个死循环的线程

    2021-04-17 04:25:34
  • 一篇文章搞懂python混乱的切换操作与优雅的推导式

    2023-09-15 00:25:10
  • Python字典底层实现原理详解

    2021-04-09 12:58:28
  • Python中线程threading.Thread的使用详解

    2023-07-22 13:25:48
  • Python requests接口测试实现代码

    2023-09-10 18:09:21
  • 在自动化中用python实现键盘操作的方法详解

    2021-02-04 00:23:48
  • Pytest测试报告工具Allure的高级用法

    2023-06-20 17:21:09
  • Git 命令使用技巧提供工作效率

    2022-05-11 18:01:33
  • Vue 解决在element中使用$notify在提示信息中换行问题

    2024-04-28 10:53:35
  • asp之家 网络编程 m.aspxhome.com