[Go] 子类 调用 父类 的 属性、方法
在Python中,子类可以通过`super()`函数来调用父类的属性。具体的方法是在子类的初始化函数`__init__()`中调用`super().__init__()`来调用父类的初始化函数,从而获得父类的属性。例如:
```python
class Parent:
def __init__(self):
self.parent_property = "I am from Parent class"
class Child(Parent):
def __init__(self):
super().__init__()
self.child_property = "I am from Child class"
child = Child()
print(child.parent_property)
```
在这个例子中,子类`Child`继承了父类`Parent`,并且在子类的初始化函数中调用了父类的初始化函数,从而获得了父类的属性`parent_property`。最后,我们通过`print(child.parent_property)`打印出了子类的父类属性。