在编程世界中,超级构造函数在调用父类的构造函数中起着至关重要的作用。正如您所提到的,由于对其他编程语言的熟悉,在 Python 中使用 super() 的期望似乎很明显。然而,Python 提供了一种稍微不同的调用方法。
在 Python 3 及更高版本中,可以使用简化的语法来调用超类构造函数:
class A(object): def __init__(self): print("world") class B(A): def __init__(self): print("hello") super().__init__()
此语法替换了之前的较长语法Python 2 中使用的形式:
class A(object): def __init__(self): print "world" class B(A): def __init__(self): print "hello" super(B, self).__init__()
在 Python 2 中,您必须在 super() 方法调用中指定包含的类名。然而,在 Python 3 中,双下划线 (__) 语法引入了一个快捷方式,允许您省略此参数,从而使代码更清晰。
以上是Python 中的'super()”构造函数如何工作?的详细内容。更多信息请关注PHP中文网其他相关文章!