欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python继承和多态

程序员文章站 2022-07-05 17:08:06
Python继承与多态,程序测试一个动物类,两个子类Dog、Cat。def run_twice(animal): animal.run() animal.run() class Animal(object): def run(self): print('Animal is running') #动物... ......

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

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