当前位置 : 主页 > 编程语言 > python >

Python继承和多态

来源:互联网 收集:自由互联 发布时间:2021-06-25
Python继承与多态,程序测试一个动物类,两个子类Dog、Cat。 def run_twice(animal): animal.run() animal.run() class Animal(object): def run(self): print ( ‘ Animal is running ‘ ) # 动物类 class Dog(Animal): def run(

Python继承与多态,程序测试一个动物类,两个子类Dog、Cat。

def run_twice(animal):
    animal.run()
    animal.run()
    
class Animal(object):
    def run(self):
        print(Animal is running)
    #动物类

class Dog(Animal):
    def run(self):
        print(dog is Running...)
    def eat(self):
        print(Eating meat...)
    #狗类
class Cat(Animal):
    def run(self):
        print(Cat is running)
    #猫类
dog = Dog()
dog.run()
dog.eat()

cat = Cat()
cat.run()

run_twice(Dog())

读书和健身总有一个在路上

网友评论