超级用于引用基类方法

时间:2015-05-14 14:50:01

标签: python

我无法在Python 2.7.9中使用super;有可能使用它吗?我一直在尝试的代码:

class Base():
   def __init__(self):
      print "It's a Base"
class Secondary(Base):
   def __init__(self):
      super(Secondary,self).__init__()
Secondary()

错误:

Must be type not classobj

0 个答案:

没有答案