Python 官方文档:入门教程 => 点击学习
这篇文章主要介绍了python重写父类的方法有哪些的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python重写父类的方法有哪些文章都会有所收获,下面我们一起来看看吧。1.基础应用class Anim
这篇文章主要介绍了python重写父类的方法有哪些的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python重写父类的方法有哪些文章都会有所收获,下面我们一起来看看吧。
class Animal(object): def eat(self): print("动物吃东西")class Cat(Animal): def eat(self): print("猫吃鱼") # 格式一:父类名.方法名(对象) Animal.eat(self) # 格式二:super(本类名,对象).方法名() super(Cat, self).eat() # 格式三:super()方法名() super().eat()cat1 = Cat()cat1.eat()print(cat1)
#用元类实现单例模式class SingletonType(type): instance = {} def __call__(cls, *args, **kwargs): if cls not in cls.instance: # 方式一: # cls.instance[cls] = type.__call__(cls, *args, **kwargs) # 方式二 # cls.instance[cls] = super(SingletonType, cls).__call__(*args, **kwargs) # 方式三 cls.instance[cls] = super().__call__(*args, **kwargs) return cls.instance[cls]class Singleton(metaclass=SingletonType): def __init__(self, name): self.name = names1 = Singleton('1')s2 = Singleton('2')print(id(s1) == id(s2))
当一个类存在多继承时,它继承的多个父类有相同的父类A,在重写其父类时需要注意
方法一:父类名.方法名(对象)
父类A会被调用多次(根据继承的个数)
重写父类时根据需要传递所需要的参数
方法二:super(本类名,对象).方法名()
父类A也只会被调用一次
重写父类方法必须传递所有参数
当一个类存在继承,且已经在子类中重写相应的变量,改变父类的变量不会对子类有影响
class Parent(object): x = 1class Child1(Parent): passclass Child2(Parent): passprint(Parent.x, Child1.x, Child2.x)Child1.x = 2print(Parent.x, Child1.x, Child2.x)Parent.x = 3print(Parent.x, Child1.x, Child2.x)
输出结果
1 1 1
1 2 1
3 2 3
关于“Python重写父类的方法有哪些”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Python重写父类的方法有哪些”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网Python频道。
--结束END--
本文标题: Python重写父类的方法有哪些
本文链接: https://lsjlt.com/news/353846.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0