python 多态和鸭子类型

python 多态和鸭子类型

#多态
class Animal():
    def say(self):
        print('动物在叫')


class People(Animal):
    def say(self):
        super().say()
        print('嘤嘤嘤')

class Dog(Animal):
    def say(self):
        super().say()
        print('汪汪汪')

class Pig(Animal):
    def say(self):
        super().say()
        print('哼哼哼')

a=People()
# a.say()
b=Dog()
# b.say()
c=Pig()
# c.say()

#统一接口
def animal_say(animal):
    animal.say()

animal_say(a)
animal_say(b)
animal_say(c)

#鸭子类型:叫的像鸭子,走路像鸭子,你就是鸭子...
#python 推崇鸭子类型,不需要继承同一个父类,大家做的像一点,像鸭子,就认为你是鸭子
#栗子 统一,把cpu,mem,txt都做的和文件差不多,统一接口
class Cpu():
    def read(self):
        print('cpu read')

    def write(self):
        print('cpu write')

class Mem():
    def read(self):
        print('mem read')

    def write(self):
        print('mem write')

class Txt():
    def read(self):
        print('txt read')

    def write(self):
        print('txt write')

obj1=Cpu()
obj2=Mem()
obj3=Txt()

def read_file(obj):
    obj.read()

read_file(obj1)
read_file(obj2)
read_file(obj3)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值