标签: python python-2.7 inheritance
我在Python中阅读了各种用于继承的super用法。但我也在Python 2.7.5中获得以下代码工作
super
class A: def f3(self): print('a f3') class B(A): def f1(self): self.f3() b = B() b.f1() # 'a f3'
这在生产中是否真的正确?我们可以使用self代替super(...)吗?
self
super(...)
谢谢!