Python 中 super(继承自己) 用法解析

1 super() 用法描述

  • super(父类) 函数是用来调用父类的方法的函数

  • super() 是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题

  • MRO 就是类的方法解析顺序表, 其实也就是继承父类方法时的顺序表

1.1 关于 Pytorch 中super(自己, self).__init__( ) 的使用

在 Pytorch 中继承 torch.nn.Module 后, 要执行 self(自己, self).__init__( ) 才能通过调用实例化的对象的 实例化对象( ) 的方法调用 forward 函数

详见 : http://t.csdn.cn/oJtfK


2 示例

class parent():
    def __init__(self):
        self.parent = "This is the parent."
        print("This is the parent in the parent's  __init__.")
    def func(self, object):
        print("%s from parent." % object)
        
class childs(parent):
    def __init__(self):
        # super(childs, self) 先找到 childs 的父类 parent, 然后再使用对应的方法
        super(childs, self).__init__()
        print("This is in the child's __init__.")
    def func(self, object):
        super(childs, self).func(object)
        print("childs' func.")
        print(self.parent)

if __name__ == "__main__":
    child = childs()
    print("-------------Create childs()-------------------")
    child.func("I love my parents!")

>>> This is the parent in the parent's  __init__.
>>> This is in the child's __init__.
>>> -------------Create childs()-------------------
>>> I love my parents! from parent.
>>> childs' func.
>>> This is the parent.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值