Python继承和多态

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

image

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())

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

posted @ 2019-09-30 11:07  Renqy  阅读(770)  评论(0编辑  收藏  举报