gpt4 book ai didi

python - Python中非参数变量的继承

转载 作者:行者123 更新时间:2023-12-01 01:09:42 25 4
gpt4 key购买 nike

在 Python 中,我对类使用继承。主父类的初始 init 如下:

def __init__(self, Date = None):
self.Date = Date
self.DatabaseClass = Database()
self.Connection = self.DatabaseClass.databaseConnection()

我已将该类继承到子类中,但我想知道继承 DatabaseClassConnection 变量的正确方法是什么,即, def __init__

最佳答案

您只需从自己类的 __init__ 方法中调用继承的 __init__ 方法即可。

class Child(Parent):
def __init__(self, Date=None, other, arguments):
super().__init__(Date)
# ...

关于python - Python中非参数变量的继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54975310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com