gpt4 book ai didi

python - __abstractmethods__ 和 AttributeError

转载 作者:太空狗 更新时间:2023-10-30 01:15:04 25 4
gpt4 key购买 nike

当我注意到这一点时,我正在使用 dir() 内置函数:

>>> dir(type)
['__abstractmethods__', '__base__', '__bases__', '__basicsize__', '__call__', '__class__', '__delattr__', '__dict__', '__dictoffset__', '__dir__', '__doc__', '__eq__', '__flags__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__instancecheck__', '__itemsize__', '__le__', '__lt__', '__module__', '__mro__', '__name__', '__ne__', '__new__', '__prepare__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasscheck__', '__subclasses__', '__subclasshook__', '__text_signature__', '__weakrefoffset__', 'mro']
>>> type.__abstractmethods__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: __abstractmethods__
>>> list.__abstractmethods__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: __abstractmethods__

我不明白,它出现在列表中,为什么我会收到这样的错误?

最佳答案

__abstractmethods__ 是一个 descriptor支持Abstract Base Classes ;它包装了一个默认为空的 slot(因此描述符会引发属性错误)。最重要的是,它是 CPython 如何处理抽象方法的实现细节。

该属性用于跟踪哪些方法是抽象的,以便在实例不提供具体实现时阻止创建实例:

>>> import abc
>>> class FooABC(metaclass=abc.ABCMeta):
... @abc.abstractmethod
... def bar(self):
... pass
...
>>> FooABC.__abstractmethods__
frozenset({'bar'})
>>> class Foo(FooABC): pass
...
>>> Foo()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Can't instantiate abstract class Foo with abstract methods bar

abc.ABCMeta 实现设置了 __abstractmethods__ 属性,并且 type() 使用它来检查任何应该被调用的抽象方法已实现但尚未实现。

关于python - __abstractmethods__ 和 AttributeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24914584/

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