super使用简介
Posted jackshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了super使用简介相关的知识,希望对你有一定的参考价值。
def super(cls, inst):
mro = inst.__class__.mro()
return mro[mro.index(cls) + 1]
1.inst 代表MRO列表
2.定位当前类在MRO中的索引,返回索引+1的位置
class A:
def hahaha(self):
print(‘A‘)
class B(A):
def hahaha(self):
super().hahaha()
#super(B,self).hahaha()
#A.hahaha(self)
print(‘B‘)
a = A()
b = B()
b.hahaha() # 执行结果A,B
super(B,b).hahaha() # 执行结果 A
以上是关于super使用简介的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段