暂无 |

继承

从另一个类继承的类称为子类。 继承的类称为超类。
如果一个类继承了另一个具有相同属性或方法的类,则重写它们。
class Wolf: 
  def __init__(self, name, color):
    self.name = name
    self.color = color

  def bark(self):
    print("喔...")

class Dog(Wolf):
  def bark(self):
    print("旺旺旺!")
        
husky = Dog("Max", "grey")
husky.bark()

结果:

>>>
旺旺旺!
>>>
在上面的例子中,Wolf是超类,Dog是子类。

0

发表评论

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