类的多重继承

什么是多重继承
  • 可以继承多个基(父)类
多重继承的方法
  • class Child(Parent1, Parent2, Parent3...)

  • 将被继承的类放入子类的参数位中,用逗号隔开

  • 从左向右依次继承

代码