python中的抽象方法

Posted 安迪9468

tags:

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

python中的抽象方法

父类要限制
1、子类必须有父类的方法
2、子类实现的方法必须跟父类的方法的名字一样

import abc


class A(metaclass=abc.ABCMeta):
    @abc.abstractclassmethod
    def read(self):
        pass

    @abc.abstractclassmethod
    def write(self):
        pass


class B(A):
    def read(self):
        print("I am read")

    def write(self):
        print("I am write")


b = B()
b.read()
b.write()

  



以上是关于python中的抽象方法的主要内容,如果未能解决你的问题,请参考以下文章

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

python中的抽象方法

Python中的抽象方法

Python中的抽象方法[重复]

python中的模块

javaSE_07_方法