老生常谈python之鸭子类和多态
作者:jingxian 时间:2023-09-26 09:00:26
一、 什么是多态
<1>一种类型具有多种类型的能力
<2>允许不同的对象对同一消息做出灵活的反应
<3>以一种通用的方式对待个使用的对象
<4>非动态语言必须通过继承和接口的方式来实现
二、 python中的多态
<1>通过继承实现多态(子类可以作为父类来使用)
<2>子类通过重载父类的方法实现多态
class Animal:
def move(self):
print('animal is moving....')
class Dog(Animal):
pass
def move(obj):
obj.move()
>>>move(Animal())
>>>animal is moving....
>>>move(Dog())
>>>animal is moving....
class Fish(Animal):
def move(self):
print('fish is moving....')
>>>move(Fish())
>>>fish is moving....
三、 动态语言和鸭子类型
<1>变量绑定的类型是不确定的
<2>函数和方法可以接收任何类型的参数
<3>调用方法时不检查提供的参数类型
<4>调用是否成功有参数的方法和属性确定,调用不成功则抛出错误
<5>不用实现接口
class P:
def __init__(self, x, y):
self.x = x
self.y = y
def __add__(self, oth):
return P(self.x+oth.x, self.y+oth.y)
def info(self):
print(self.x, self.y)
class D(P):
def __init__(self, x, y, z):
super.__init__(x, y)
self.z = z
def __add__(self, oth):
return D(self.x+oth.x, self.y+oth.y, self.z+oth.z)
def info(self):
print(self.x, self.y, self.z)
class F:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
def __add__(self, oth):
return D(self.x+oth.x, self.y+oth.y, self.z+oth.z)
def info(self):
print(self.x, self.y, self.z)
def add(a, b):
return a + b
if __name__ == '__main__':
add(p(1, 2), p(3, 4).info())
add(D(1, 2, 3), D(1, 2, 3).info())
add(F(2, 3, 4), D(2, 3, 4).info())
四、 多态的好处
<1>可实现开放的扩展和修改的封闭
<2>使python程序更加的灵活
标签:python,多态,鸭子类
0
投稿
猜你喜欢
python 字符串只保留汉字的方法
2022-07-15 00:34:49
vue 使用饿了么UI仿写teambition的筛选功能
2024-04-27 16:05:09
DBA_2PC_PENDING 介绍
2009-02-28 10:59:00
python+requests接口自动化框架的实现
2022-11-25 04:03:40
Python中几种操作字符串的方法的介绍
2021-06-16 22:50:06
python编写实现抽奖器
2023-02-25 00:44:45
Goland编辑器设置选择范围背景色的操作
2024-04-25 15:13:54
ASP利用Google实现在线翻译功能
2010-03-07 17:28:00
thinkphp5加layui实现图片上传功能(带图片预览)
2023-06-13 01:09:45
Python编写nmap扫描工具
2021-08-07 14:53:10
Sql 批量查看字符所在的表及字段
2024-01-15 02:53:36
pytorch-神经网络拟合曲线实例
2022-03-17 18:17:30
Python3.5 Pandas模块缺失值处理和层次索引实例详解
2021-05-20 00:35:50
TensorFlow中关于tf.app.flags命令行参数解析模块
2021-10-17 03:40:40
javascript 数组去重复(在线去重工具)
2024-04-16 09:14:51
Node.js对MySQL数据库的增删改查实战记录
2024-01-14 18:25:12
PyTorch中可视化工具的使用
2021-03-05 23:11:39
python实现Oracle查询分组的方法示例
2021-03-30 10:59:54
GoFrame框架gredis优雅的取值和类型转换
2024-05-22 10:29:12
Python实现1-9数组形成的结果为100的所有运算式的示例
2023-04-09 10:52:37