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

面向对象中,用super来联系父类的函数

时间:2018-10-13 18:17:50      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:pre   sel   elf   ima   color   父类   print   other   nim   

class Animal:
    def __init__(self):
        print("A构造方法")
        self.ty = "动物"
    def Other(self):
        print("Others")
        self.nn = "simon"


class Cat(Animal):

    def __init__(self):
        print("B构造方法")
        self.n = ""
        # super执行父类的构造方法,可以执行父类的任何方法
        super(Cat, self).__init__()
        super(Cat,self).Other()


c = Cat()
print(c.__dict__)

执行结果:

B构造方法
A构造方法
Others
{‘n‘: ‘猫‘, ‘ty‘: ‘动物‘, ‘nn‘: ‘simon‘}

面向对象中,用super来联系父类的函数

标签:pre   sel   elf   ima   color   父类   print   other   nim   

原文地址:https://www.cnblogs.com/xuwenwei/p/9783495.html

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