还未发布过话题
  • def f3():
        '''循环引用'''
        while True:
            c1=A()
            c2=A()
            c1.t=c2
            c2.t=c1
            del c1
            del c2
            #增加垃圾回收机制
            print(gc.garbage)
            print(gc.collect())
            print(gc.garbage)
            time.sleep(10)
    

    为啥我执行 print(gc.collect()) 时没有打印出 gc 相关的信息,直接是 []?py38,win10 2020h2