父类方法可以调用将在子类中实现的抽象方法吗?
问题描述
如果我有一个包含两个方法的父类:
class Parent():
@abstractmethod
@staticmethod
def functionA():
pass
def functionB():
return __class__.functionA() + 1
我实现了一个子类:
class Child(Parent):
def functionA(): # this function is different for each kind of child
return 3
归根结底,子类的目的只是调用functionB()
。
它起作用了吗?当然,我可以将functionB()
放到子类中并使其工作,但因为functionB()
对于每种子类都是相同的,所以我不想为每个类编写重复的代码?
另外,我在这里使用__class__
合适吗?
解决方案
首先,functionB
本身应该是类方法。
@classmethod
def functionB(cls):
return cls.functionA() + 1
其次,您仍然必须将functionA
装饰为每个子类中的静态方法;否则,您将用实例方法替换继承的静态方法。
class Child(Parent):
@staticmethod
def functionA():
return 3
相关文章