是否可以在Python中创建抽象类?

是否可以在Python中创建抽象类?,第1张

是否可以在Python中创建抽象类?

使用该

abc
模块创建抽象类。使用
abstractmethod
装饰器来声明方法摘要,并根据您的Python版本使用以下三种方式之一声明类摘要。

在Python
3.4及更高版本中,您可以从继承

ABC
。在Python的早期版本中,您需要将类的元类指定为
ABCmeta
。指定元类在Python
3和Python 2中具有不同的语法。三种可能性如下所示:

# Python 3.4+from abc import ABC, abstractmethodclass Abstract(ABC):    @abstractmethod    def foo(self):        pass# Python 3.0+from abc import ABCmeta, abstractmethodclass Abstract(metaclass=ABCmeta):    @abstractmethod    def foo(self):        pass# Python 2from abc import ABCmeta, abstractmethodclass Abstract:    __metaclass__ = ABCmeta    @abstractmethod    def foo(self):        pass

无论使用哪种方式,都将无法实例化具有抽象方法的抽象类,但将能够实例化提供这些方法的具体定义的子类:

>>> Abstract()Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: Can't instantiate abstract class Abstract with abstract methods foo>>> class StillAbstract(Abstract):...     pass... >>> StillAbstract()Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: Can't instantiate abstract class StillAbstract with abstract methods foo>>> class Concrete(Abstract):...     def foo(self):...         print('Hello, World')... >>> Concrete()<__main__.Concrete object at 0x7fc935d28898>


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5618166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存