gpt4 book ai didi

python - 来自 sys.getrefcount 的意外值

转载 作者:太空狗 更新时间:2023-10-30 02:20:32 25 4
gpt4 key购买 nike

在 Python 2.7.5 下

>>> import sys
>>> sys.getrefcount(10000)
3

三个refcount在哪里?

PS:什么时候 10000 PyIntObject 将 Py_DECREF 变为 0 ref 并释放? 不要说 gc 的东西,引用计数本身可以在没有 gc 的情况下工作。

最佳答案

  1. 当您在 REPL 控制台中执行某些操作时,字符串将在内部进行编译,在编译过程中,Python 会创建一个中间列表,其中包含除标记之外的字符串列表。所以,这是引用编号 1。您可以这样检查

    import gc
    print gc.get_referrers(10000)
    # [['sys', 'dis', 'gc', 'gc', 'get_referrers', 10000], (-1, None, 10000)]
  2. 由于它只是一个数字,在编译过程中,Python 的窥孔优化器将数字作为常量之一存储在生成的字节码中。你可以这样检查

    print compile("sys.getrefcount(10000)", "<string>", "eval").co_consts
    # (10000,)

注意:

Python 在列表中存储 10000 的中间步骤仅用于编译的字符串。这不是为已编译的代码生成的。

print eval("sys.getrefcount(10000)")
# 3
print eval(compile("sys.getrefcount(10000)", "<string>", "eval"))
# 2

在第二个示例中,我们使用compile 函数编译代码,并仅将代码对象传递给eval 函数。现在只有两个引用。一个来自窥孔优化器创建的常量,另一个是 sys.getrefcount 中的常量。

关于python - 来自 sys.getrefcount 的意外值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22549723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com