在Python中,要調(diào)用父類的方法,可以使用`super()`函數(shù)來實現(xiàn)。
在子類中,通過`super()`函數(shù)可以調(diào)用父類的方法,從而實現(xiàn)對父類方法的重用。
`super()`函數(shù)需要傳遞兩個參數(shù):子類名和self對象。通過這兩個參數(shù),`super()`函數(shù)可以找到當(dāng)前子類的父類,并調(diào)用父類中相應(yīng)的方法。
以下是一個示例代碼:
```python
class ParentClass:
def __init__(self):
self.name = "Parent"
def say_hello(self):
print("Hello from Parent")
class ChildClass(ParentClass):
def __init__(self):
super().__init__() # 調(diào)用父類的構(gòu)造方法
self.name = "Child"
def say_hello(self):
super().say_hello() # 調(diào)用父類的方法
print("Hello from Child")
child = ChildClass()
child.say_hello()
```
輸出結(jié)果為:
```
Hello from Parent
Hello from Child
```
在上述示例中,`ChildClass`繼承自`ParentClass`,在子類的`__init__`方法中通過`super().__init__()`調(diào)用了父類的構(gòu)造方法,并在子類的`say_hello`方法中通過`super().say_hello()`調(diào)用了父類的方法。