标签: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‘}
标签:pre sel elf ima color 父类 print other nim
原文地址:https://www.cnblogs.com/xuwenwei/p/9783495.html