标签:代码 定义 如何 改变 span pretty ini call print
如果在子类中也定义了构造器,既_init_()函数,那么基类的构造器该如何调用呢?
方法一、明确指定
使用一个子类的实例去调用基类的构造器,在子类的构造器中明确的指明调用基类的构造器。
class C(P):
... def __init__(self):
... P.__init__(self)
... print ‘calling Cs construtor‘
方法二、使用super()方法
super()方法的漂亮之处在于,你不需要在定义子类构造器时,明确的指定子类的基类并显式的调用,即不需要明确的提供父类,这样做的好处就是,如果你改变了继承的父类,你只需要修改一行代码(class代码行),而不需要在大量代码中去查找那个要修改的基类。另外一方面代码的可移植性和重用性也更高。
>>> class C(P):
... def __init__(self):
... super(C,self).__init__()
... print ‘calling Cs construtor‘
...
>>> c=C()
以上代码中P是C的父类。
标签:代码 定义 如何 改变 span pretty ini call print
原文地址:https://www.cnblogs.com/armyochen/p/9032979.html