python2 和 python3 中调用父类方法

2017-08-15  本文已影响0人  wangtieshan

首先把自己碰到的错误贴出来:

TypeError: super() takes at least 1 argument (0 given)

首先看 python2 中的写法

class Animal(object):

    def __init__(self):
        print 'Animal init'

class Tom(Animal):

    def __init__(self):

        '''第一种写法:'''
        super(Tom, self).__init__()

        '''第二种写法'''
        Animal(self),__init__()

        print('Tom init')

从上面代码看,可知共两种写法

                '''第一种写法:'''
        super(Tom, self).__init__()

        '''第二种写法'''
        Animal(self),__init__()

先看第二种写法,就是 Animal 类通过 self 初始化了一个对象(实例、instance),然后让该对象调用器 init 方法。
第二种写法不难理解

然后第一种写法其实就是写法不同,但是可以这么理解
super(Tom, self) 就是查找 Tom.super -> Animal
然后使用 Animal(self) 调用 init 方法

python3

python3 中写法更为简单,第二种写法,在python2 和 python3 中都可以使用
然后 python3 中可以直接 super().method 调用方法

上一篇下一篇

猜你喜欢

热点阅读