您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

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

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

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

在Python 3.4及更高版本中,您可以从继承ABC。在Python的早期版本中,您需要将类的元类指定为ABCMeta。指定元类在Python 3和Python 2中具有不同的语法。三种可能性如下所示:

# Python 3.4+
from abc import ABC, abstractmethod
class Abstract(ABC):
    @abstractmethod
    def foo(self):
        pass



# Python 3.0+
from abc import ABCMeta, abstractmethod
class Abstract(Metaclass=ABCMeta):
    @abstractmethod
    def foo(self):
        pass



# Python 2
from abc import ABCMeta, abstractmethod
class 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>
python 2022/1/1 18:36:50 有237人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶