python 获得子类的父类
时间: 2023-06-03 18:06:32 浏览: 162
Python 实现子类获取父类的类成员方法
可以通过使用内置函数 super() 来获取子类的父类。例如:
```
class Parent:
def __init__(self):
self.parent_property = 'Parent Property'
class Child(Parent):
def __init__(self):
super().__init__()
self.child_property = 'Child Property'
c = Child()
print(c.child_property) # Output: Child Property
print(c.parent_property) # Output: Parent Property
```
在上面的代码中,子类 Child 的构造函数中通过 super() 函数来调用父类 Parent 的构造函数,从而获取了父类的属性。
阅读全文