我什么时候可以在Python中使用self调用基类方法

时间:2018-06-11 00:47:03

标签: python python-2.7 inheritance

我在Python中阅读了各种用于继承的super用法。但我也在Python 2.7.5中获得以下代码工作

class A:
    def f3(self):
        print('a f3')

class B(A):
    def f1(self):
        self.f3()

b = B()
b.f1() # 'a f3'

这在生产中是否真的正确?我们可以使用self代替super(...)吗?

谢谢!

0 个答案:

没有答案