gpt4 book ai didi

python - 为什么这个单例概念不会产生无限循环?

转载 作者:太空宇宙 更新时间:2023-11-04 09:06:29 25 4
gpt4 key购买 nike

我发现这是在 Python 中搜索单例概念。我想知道的是为什么 self._instance = super(Singleton, self).__new__(self) 不会导致无限循环。我认为调用 __new__ 会开始一种递归,因为那时不应该设置 self._instance

我的错误在哪里?

class Singleton(object):
_instance = None
def __new__(self):
if not self._instance:
self._instance = super(Singleton, self).__new__(self)
return self._instance

最佳答案

这实际上调用了 object.__new__,而不是 Singleton.__new__,因此没有递归。

关于python - 为什么这个单例概念不会产生无限循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20242353/

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