码迷,mamicode.com
首页 > 其他好文 > 详细

super使用简介

时间:2020-02-10 13:51:15      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:fun   index   列表   key   ber   位置   tle   UNC   返回   

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使用简介

标签:fun   index   列表   key   ber   位置   tle   UNC   返回   

原文地址:https://www.cnblogs.com/JackShi/p/12290412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!