如何调用超级构造函数?
class A: def __init__(self): print("world")class B(A): def __init__(self): print("hello")B() # output: hello
在我使用过的所有其他语言中,超级构造函数都是隐式调用的。如何在Python中调用它?我希望super(self)但这不管用。
super(self)
哆啦的时光机
相关分类