python中的super( test, self).__init__()

时间:2022-11-06 00:22:33

python中的super( test, self).__init__()

 对继承自父类的属性进行初始化

首先找到test的父类(比如是类A),然后把类test的对象self转换为类A的对象,然后“被转换”的类A对象调用自己的__init__函数