我正在尝试创建基类并强制所有子类实现它的接口。我正在使用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
任何帮助将不胜感激。
答案 0 :(得分:2)
将__metaclass
更改为__metaclass__
。否则它只是一个普通的隐藏属性。
>>> ConcretePlugin(123)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Can't instantiate abstract class ConcretePlugin with abstract methods idle