TypeError: must be type, not classobj

时间:2022-04-28 16:56:09
__metaclass = type;
class T():
    def __init__(self):
        pass;
class G(T):
    def __init__(self):
        super(G, self).__init__();
        

m =G(); 报错TypeError: must be type, not classobj
这里就涉及到了新式类和旧式类的问题,也有人教经典类和新类.
在使用super的时只有在新式类中有效,如何申明新式类?
第一:加__metaclass = type;
第二:所有的类都要有超类,如果没有超类,那么就继承object.所有可以将T改为这样:
class T(object):
    #code here
这样再实例化G的时候就不会报TypeError: must be type, not classobj错误了