在Python中,可以使用super()
函数来访问父类的属性和方法。super()
函数返回一个代理对象,通过该对象可以调用父类的方法。通过super()
函数,可以在子类中访问父类的属性和方法,而无需直接引用父类的名称。
以下是使用super()
函数访问父类变量的方法:
class ParentClass:
def __init__(self):
self.parent_variable = "Parent Variable"
class ChildClass(ParentClass):
def __init__(self):
super().__init__() # 调用父类的构造函数
self.child_variable = "Child Variable"
def print_variables(self):
print("Parent Variable:", super().parent_variable) # 访问父类的变量
print("Child Variable:", self.child_variable)
child = ChildClass()
child.print_variables()
输出结果为:
Parent Variable: Parent Variable
Child Variable: Child Variable
在上述示例中,ChildClass
继承自ParentClass
,通过super().__init__()
调用父类的构造函数,从而初始化父类的属性。在print_variables()
方法中,使用super().parent_variable
访问父类的变量。
需要注意的是,super()
函数只能用于新式类(继承自object
类的类),而不适用于旧式类。此外,如果存在多级继承关系,super()
函数会按照方法解析顺序(Method Resolution Order,MRO)依次调用父类的方法。
领取专属 10元无门槛券
手把手带您无忧上云