暂无 |

继承

继承也可以是间接的。一个类可以从另一个类继承,并且该类可以从第三个类继承。

例如:

class A:
  def method(self):
    print("A method")
    
class B(A):
  def another_method(self):
    print("B method")
    
class C(B):
  def third_method(self):
    print("C method")
    
c = C()
c.method()
c.another_method()
c.third_method()

结果:

>>>
A method
B method
C method
>>>
然而,循环继承是不可能的。

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论