我是靠谱客的博主 大意黑米,最近开发中收集的这篇文章主要介绍python2.7 使用super关键词 报错 TypeError: must be type, not&n,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
错误试验代码:
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()
报错原因:
super只能用于python的新类中,如果基类是经典类,则会报这个错。
新类和经典类又是什么呢?
新类:所有类都必须要有继承的类,如果什么都不想继承,就继承到object类。
经典类:什么都不用继承的类,如上面的代码就是经典类。所以报错。
所以修改第一行代码:
06/07/15 07:43:26 G:Language studypythonTestsuper.py | ||
当然了还有另外一种解决方式: 程序首行添加__metaclass__ = type |
转载于:https://www.cnblogs.com/hester/p/4989867.html
最后
以上就是大意黑米为你收集整理的python2.7 使用super关键词 报错 TypeError: must be type, not&n的全部内容,希望文章能够帮你解决python2.7 使用super关键词 报错 TypeError: must be type, not&n所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复