super() 在 python2、3中的区别
例:
python3 直接写成 : super().init()
python2 必须写成 :super(本类名,self).init()
python3中的实例:
class A:
def add(self, x):
y = x+1
print(y)
class B(A):
def add(self, x):
super().add(x)
b = B()
b.add(2) # 3
python2中的实例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
class A(object): # Python2.x 记得继承 object
def add(self, x):
y = x+1
print(y)
class B(A):
def add(self, x):
super(B, self).add(x)
b = B()
b.add(2) # 3
- 经本人尝试,以上方法还是行不通。
解决办法:
那么我们在python2中如何解决这个问题呢
注意,以下是部分代码改进,将super()方法改写为:
class student(Person):
def __init__(self, class_, name, age, height, number):
self.class_ = class_
Person.__init__(self, name, age, height, number)
- 代码成功运行