Python中的super().__init__()

Python里的super().init()有什么用?

简单的说super().__init__(),就是继承父类的init方法,同样可以使用super()去继承其他方法。

下面是三种不同的继承、调用,对比他们的区别,搞清楚super().__init__()的用途。

1、从实例中对比(python3)

1.1、实例

子类名称继承内容
Puple 继承所有
Puple_Init 继承,但覆盖了init方法
Puple_Super 继承,但覆盖了init方法,并在init里面添加了super().__init__()

1.2、运行结果与对比

2、super() 在 python2、3中的区别

Python3.x 和 Python2.x 的一个区别:

Python 3 可以使用直接使用 super().xxx 代替 super(Class, self).xxx :

例:
python3 直接写成 : super().__init__()
python2 必须写成 :super(本类名, self).__init__()

 

posted @ 2022-03-04 18:19  MUYang99  阅读(488)  评论(0编辑  收藏  举报