标签:
super用于类的继承。用super()代替父类名
(一)通过类名调用父类中的方法 (二)通过super调用父类中的方法(python3)
结果如下:
python3中的写法:super().__init__()
python2中的写法:super(B,self).__init__() B子类,不是父类,别写错了。
python中的super
原文地址:http://www.cnblogs.com/jmlovepython/p/5701948.html