美文网首页
python2 和 python3 中调用父类方法

python2 和 python3 中调用父类方法

作者: wangtieshan | 来源:发表于2017-08-15 10:27 被阅读0次

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

    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 调用方法

    相关文章

      网友评论

          本文标题:python2 和 python3 中调用父类方法

          本文链接:https://www.haomeiwen.com/subject/ksjmrxtx.html