python中的super函数理解

super()函数根据传进去的两个参数具体作用如下:

通过第一参数传进去的类名确定当前在mro中的哪个位置。mro(method resolution order);

通过第二个参数传进去的self,确定当前的mro列表。

def super(cls, inst):
mro = inst.__class__.mro() #确定当前mro列表
return mro[mro.index(cls) + 1] #返回下一个类

如下代码:

class a(object):
def name(self):
print(‘name is xiaoming’) #super(a,self).name()class b(object):
def name(self):
print(‘name is cat’)class c(a,b):
def name(self):
print(‘name is wang’)
super(c,self).name()if __name__ == ‘__main__’:
c = c()
print(c.__class__.__mro__)
c.name()

执行以上代码输出:当执行c类下的super()函数时,实际调用了a类下的name函数。a中注释掉了super()函数,所以并没有向后继续执行。并且打印出了当前mro列表顺序为c,a,b,object.

(, , , )name is wang
name is xiaoming

当我们把a类中的注释去掉后,执行代码输出:可以看到,当a执行后继续执行了b中的name()函数。如果b中仍然有super函数则会继续向上去查找object中是否有name()函数。

(, , , )name is wang
name is xiaoming
name is cat

更多python中的super函数理解相关文章请关注php中文网!

Posted in 未分类

发表评论