python abc模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python abc模块相关的知识,希望对你有一定的参考价值。

因为Python没有提供抽象类,需要使用抽象类需要使用abc模块

abc用法很简单主要是3个:

    ABCMeta,abstactporperty,abstractmethod


from abc import ABCMeat, abstractporperty, abstractmethod
class B():
  __metaclass__ =  ABCMeta
 @abstractporperty
 def map_data(self):
    pass
 @abstractmethod
 def find(self):
    pass

子类中必须重写抽象方法.

本文出自 “7049184” 博客,请务必保留此出处http://7059184.blog.51cto.com/7049184/1887715

以上是关于python abc模块的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

python 用abc模块构建抽象基类Abstract Base Classes

学习Python的ABC模块(转)

python abc模块

循环通过 python 正则表达式匹配

Python练习时,千万不要将模块文件夹命名为abc