您的位置:首页 > 编程语言 > Python开发

python2.7 使用super关键词 报错 TypeError: must be type, not classobj 解决办法

2013-07-04 14:13 916 查看
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。/article/4393369.html

今天遇到这个错误:

Traceback (most recent call last):

File "t2.py", line 14, in <module>

print Derived().meth()

File "t2.py", line 10, in meth

super(Derived,self).meth()

TypeError: must be type, not classobj

试验代码如下:

class Base():
def meth(self):
print "i'm base"

class Derived(Base):
def meth(self):
super(Derived,self).meth()
print "this is derived"

print Derived().meth()

google了下,发现原因是:
super只能用于python的新类中,如果基类是经典类,则会报这个错。
新类和经典类又是什么呢?
新类:所有类都必须要有继承的类,如果什么都不想继承,就继承到object类。
经典类:什么都不用继承的类,如上面的代码就是经典类。所以报错。

class Base(object):
def meth(self):
print "i'm base"


本文出自 “YEELONⒼ ” 博客,请务必保留此出处/article/4393369.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐