我正在尝试创建基类并强制所有子类实现它的接口。我abc
为此目的使用该模块。
这是基类:
class PluginBase:
__metaclass = abc.ABCMeta
@abc.abstractmethod
def strrep(self):
return
@abc.abstractmethod
def idle(self):
print 'PluginBase: doing nothing here'
pass
@abc.abstractmethod
def say(self, word):
print 'PluginBase: saying a word ''', word, '\''
return
这是孩子:
class ConcretePlugin(PluginBase):
def __init__(self, val):
print 'initialising ConcretePlugin with value of %d' % val
self.val = val
def strrep(self):
print 'ConcretePlugin = %d' % self.val
return
#'idle' method implementation is missing
def say(self): # missing argument here; saying our own word =)
print 'ConcretePlugin: this is my word'
return
本次测试:
child = ConcretePlugin(307)
child.strrep()
child.idle()
child.say()
产生以下结果:
initialising ConcretePlugin with value of 307
ConcretePlugin = 307
PluginBase: doing nothing here
ConcretePlugin: this is my word
不要抱怨不完整的实施!
所以我的问题是抽象基类是否不是真正抽象的。如果它们不是,那么是否有某种方法可以进行健壮的打字?
注意:我已经命名了示例类PluginBase
并CompletePlugin
表明我需要确保客户端类实现正确的接口。
我试过派生PluginBase
自object
,但这没有区别。我正在使用 Python 2.7.1
任何帮助将不胜感激。