我们有讲过子类继承的问题,所以本篇文章我们来谈谈父类中的那些问题。因为小编倾向于使用python3,我们本篇文章的探讨也会基于python3进行。在调用的时候,一般情况是子类、父类之间的操作。这么说相信大家都能理解,下面我们就python3父类继承object的问题进行探索。
在传统的开发中,初始化父类一般使用的是子类直接调用父类的_init__方法:
classfirst(object): def__init__(self,value): self.value=value classson_of_first(first): def__init__(self): first.__init__(self,9) 对于初学者建立的继承体系,是没有问题的,也是最普遍的做法 classfatherclass(object): def__init__(self): self.value+=1 classfatherclass2(object): def__init__(self): self.value*=1 classway(fatherclass,fatherclass2): def__init__(self,value): fatherclass.__init__(self) fatherclass2.__init__(self)
在以上类中,最后在参数入口传入的是什么顺序的类,最后执行的就是什么顺序的类
例如以下的类定义顺序与产生结果就是不同的:
classfatherclass(object): def__init__(self): self.value+=1 classfatherclass2(object): def__init__(self): self.value*=1 classway(fatherclass2,fatherclass1): def__init__(self,value): fatherclass.__init__(self) fatherclass2.__init__(self)
整篇文章看完的小伙伴已经知道答案了,这里小编为大家揭晓父类是可以不继承的。小伙伴们一定要记住了哦,也可以写在备忘录里随时翻看~