• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    分析python垃圾回收机制原理

    引用计数

    引用计数案例

    import sys
    class A():
        def __init__(self):
            '''初始化对象'''
            print('object born id:%s' %str(hex(id(self))))
    def f1():
        '''循环引用变量与删除变量'''
        while True:
            c1=A()
            del c1
    def func(c):
        print('obejct refcount is: ',sys.getrefcount(c)) #getrefcount()方法用于返回对象的引用计数
    if __name__ == '__main__':
       #生成对象
        a=A()                        # 此时为1
        #del a  					 # 如果del,下一句会报错, = 0,被清理
        print('obejct refcount is: ', sys.getrefcount(a)) # 此时为2 getrefcount是一个函数 +1    
        func(a)
        #增加引用
        b=a
        func(a)
        #销毁引用对象b
        del b
        func(a)
    

    执行结果:

    object born id:0x7f9abe8f2128
    obejct refcount is:  2
    obejct refcount is:  4
    obejct refcount is:  5
    obejct refcount is:  4

    导致引用计数 +1 的情况

    对象被创建,例如 a=23

    对象被引用,例如 b=a

    对象被作为参数,传入到一个函数中,例如func(a)

    对象作为一个元素,存储在容器中,例如list1=[a,a]

    导致引用计数-1 的情况

    对象的别名被显式销毁,例如del a

    对象的别名被赋予新的对象,例如a=24

    一个对象离开它的作用域,例如 f 函数执行完毕时,func函数中的局部变量(全局变量不会)

    对象所在的容器被销毁,或从容器中删除对象

    循环引用导致内存泄露

    def f2():
        '''循环引用'''
        while True:
            c1=A()
            c2=A()
            c1.t=c2
            c2.t=c1
            del c1
            del c2
    

    执行结果

    id:0x1feb9f691d0
    object born id:0x1feb9f69438
    object born id:0x1feb9f690b8
    object born id:0x1feb9f69d68
    object born id:0x1feb9f690f0
    object born id:0x1feb9f694e0
    object born id:0x1feb9f69f60
    object born id:0x1feb9f69eb8
    object born id:0x1feb9f69128
    object born id:0x1feb9f69c88
    object born id:0x1feb9f69470
    object born id:0x1feb9f69e48
    object born id:0x1feb9f69ef0
    object born id:0x1feb9f69dd8
    object born id:0x1feb9f69e10
    object born id:0x1feb9f69ac8
    object born id:0x1feb9f69198
    object born id:0x1feb9f69cf8
    object born id:0x1feb9f69da0
    object born id:0x1feb9f69c18
    object born id:0x1feb9f69d30
    object born id:0x1feb9f69ba8
    ...

    分代回收

    垃圾回收

    有三种情况会触发垃圾回收:

    1.调用gc.collect(),需要先导入gc模块。

    2.当gc模块的计数器达到阀值的时候。

    3.程序退出的时候。

    gc 模块

    gc 模块提供一个接口给开发者设置垃圾回收的选项。上面说到,采用引用计数的方法管理内存的一个缺陷是循环引用,而 gc 模块的一个主要功能就是解决循环引用的问题。

    常用函数:

    以上就是分析python垃圾回收机制原理的详细内容,更多关于python垃圾回收机制的资料请关注脚本之家其它相关文章!

    您可能感兴趣的文章:
    • python的内存管理和垃圾回收机制详解
    • 理解Python垃圾回收机制
    • Python的垃圾回收机制深入分析
    • python中的垃圾回收(GC)机制
    • 如何快速理解python的垃圾回收机制
    上一篇:python标识符的用法及注意事项
    下一篇:Python学习之MRO方法搜索顺序
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    分析python垃圾回收机制原理 分析,python,垃圾,回收,机制,