为什么以及如何使用 Python 的 super(type1, type2)?
super 有 2 个参数,
super(type, obj_of_type-or-subclass_of_type)
我理解如何以及为什么使用 super ,第二个参数是 obj_of_type。 但我不明白第二个参数是子类的问题。
任何人都可以展示为什么以及如何?
super has 2 args,
super(type, obj_of_type-or-subclass_of_type)
I understand how and why to use super with the 2nd arg being obj_of_type.
But I don't understand the matter for the 2nd arg being subclass.
Anyone can show why and how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想调用实例方法,则可以传递一个对象。如果您想调用类方法,则传递一个类。
对类方法使用 super() 的经典示例是使用工厂方法,您希望在其中调用所有超类工厂方法。
“在 Python 中调用超类的类方法”有一个现实世界例子。
You pass an object if you want to invoke an instance method. You pass a class if you want to invoke a class method.
The classic example for using
super()
for class methods is with factory methods, where you want all the superclass factory methods to be called."Invoking a superclass's class methods in Python" has a real-world example.