在以下代码中,我创建了一个基本抽象类Base
。我希望所有从其继承的类都Base
提供该name
属性,因此我将该属性设置为@abstractmethod
。
然后,我创建了一个Base
名为的子类,该子类Base_1
旨在提供一些功能,但仍保持抽象。中没有name
属性Base_1
,但是python实例化了该类的对象而没有错误。一个人如何创建抽象属性?
from abc import ABCMeta, abstractmethod
class Base(object):
__metaclass__ = ABCMeta
def __init__(self, strDirConfig):
self.strDirConfig = strDirConfig
@abstractmethod
def _doStuff(self, signals):
pass
@property
@abstractmethod
def name(self):
#this property will be supplied by the inheriting classes
#individually
pass
class Base_1(Base):
__metaclass__ = ABCMeta
# this class does not provide the name property, should raise an error
def __init__(self, strDirConfig):
super(Base_1, self).__init__(strDirConfig)
def _doStuff(self, signals):
print 'Base_1 does stuff'
class C(Base_1):
@property
def name(self):
return 'class C'
if __name__ == '__main__':
b1 = Base_1('abc')
@property
中class C
,name
将恢复的方法。