在下面的代码中,我创建了一个基抽象类Base
。我希望所有继承自Base
的类都提供name
属性,因此我将此属性设置为@abstractmethod
。
然后我创建了Base
的一个子类,称为Base_1
,它意味着提供一些功能,但仍然是抽象的。在Base_1
中没有name
属性,但是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')