- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在尝试理解一些 Python 概念时,我遇到了以下问题:
class A:
def __init__(self, x):
self.x = x
def __del__(self):
print("del")
a1 = A()
输出:
$ python test.py
del
Traceback (most recent call last):
File "testdest.py", line 9, in <module>
a1 = A()
TypeError: __init__() takes exactly 2 arguments (1 given)
错误很明显(实例化时缺少参数),但我想知道为什么在有实例之前调用析构函数?
除非在尝试实例化时,Python 甚至在调用构造函数之前就创建了一种实例,并且需要在最后清理它?
因为 self
被传递给构造函数,我可以假设这个 self
是实例吗?是这样,那么调用构造函数时实例已经存在了,是吗?
这是垃圾收集器的行为,可能取决于当前的实现吗?
最佳答案
来自 Python 文档:
Objects are never explicitly destroyed; however, when they become unreachable they may be garbage-collected. An implementation is allowed to postpone garbage collection or omit it altogether — it is a matter of implementation quality how garbage collection is implemented, as long as no objects are collected that are still reachable.
object.__init__(self[, ...])
Called after the instance has been created (by new()), but before it is returned to the caller. [...]
object.__del__(self)
Called when the instance is about to be destroyed. [...]
所以当调用__init__
时对象实例已经存在,因为它是由__new__
创建的。但是对于一般的 Python 来说,不能保证 __del__
会被调用。
以下仅适用于CPython,Python的引用实现。
Note (for
object.__del__(self)
)del x doesn’t directly
call x.__del__()
— the former decrements the reference count for x by one, and the latter is only called when x‘s reference count reaches zero. [...]
这里的__del__
会在实例的引用计数降为0 时被调用。这与垃圾回收无关。一个小实验:
>>> class A:
... def __del__(self): print "del"
...
>>> a = A()
>>> a = None
del
>>> import gc
>>> gc.disable()
>>> a = A()
>>> a = None
del
如您所见,即使明确禁用 GC,也会调用析构函数。
请注意,这也意味着如果您的对象层次结构中有循环,您最终会得到 __del__
永远不会被调用的对象,因为 Python GC 无法处理引用循环。
>>> a1 = A()
>>> a2 = A()
>>> a1.x = a2
>>> a2.x = a1
>>> a1 = None
>>> a2 = None
>>> import gc
>>> gc.collect()
4
>>> gc.garbage
[<__main__.A instance at 0x7f2c66a1d7e8>, <__main__.A instance at 0x7f2c66a1d830>]
关于python-3.x - 创建实例失败时调用的析构函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36983085/
我开始考虑在我 future 的项目或重构中实现控制反转容器,我想知道在正确设计依赖项时哪些原则(除了 GoF 模式)可能需要牢记在心。假设我需要构建一个简单的控制台应用程序,如果它可以访问互联网,它
假设我有一个 RxC contingency table 。这意味着有 R 行和 C 列。我想要一个维度为 RC × (R + C − 2) 的矩阵 X,其中包含行的 R − 1 “主效应”以及列的
我正在尝试使用 DKMS 为正在运行的内核 (4.4) 构 build 备树覆盖。我天真的 Makefile 如下: PWD := $(shell pwd) dtbo-y += my-awsome-o
我有一个 sencha touch 项目。我是用 phonegap 2.9 构建的,并且可以正常工作 device.uuid 返回到设备 ID。当我尝试使用 3.1 device.uuid 构建时抛出
我在安装了 Xcode 4.5.1 的 Mt Lion 上运行。 默认情况下,当我构建并部署到 iOS 5.1 设备时,显示会在我旋转设备时旋转,但当我部署到 iOS 6 模拟器或运行 iOS 的 i
我正在尝试使用 Google Analytics Reporting API v4 构建多折线图。 一张图表,其中我按每天的 session 计数为每个设备(台式机/平板电脑/移动设备)设置了一条线。
我一生都无法使用 xcode 组织者“自动设备配置”中的“团队配置配置文件”在 xcode 4.0.1 中将我的应用程序构建到我的 iPad 上。 该应用程序完美地构建到模拟器,但当我构建到 iPad
我是一名优秀的程序员,十分优秀!