Python实现扩展内置类型的方法分析


Posted in Python onOctober 16, 2017

本文实例讲述了Python实现扩展内置类型的方法。分享给大家供大家参考,具体如下:

简介

除了实现新的类型的对象方式外,有时我们也可以通过扩展Python内置类型,从而支持其它类型的数据结构,比如为列表增加队列的插入和删除的方法。本文针对此问题,结合实现集合功能的实例,介绍了扩展Python内置类型的两种方法:通过嵌入内置类型来扩展类型和通过子类方式扩展类型。

通过嵌入内置类型扩展

下面例子通过将list对象作为嵌入类型,实现集合对象,并增加了一下运算符重载。这个类知识包装了Python的列表,以及附加的集合运算。

class Set:
  def __init__(self, value=[]): # Constructor
    self.data = [] # Manages a list
    self.concat(value)
  def intersect(self, other): # other is any sequence
    res = [] # self is the subject
    for x in self.data:
      if x in other: # Pick common items
        res.append(x)
    return Set(res) # Return a new Set
  def union(self, other): # other is any sequence
    res = self.data[:] # Copy of my list
    for x in other: # Add items in other
      if not x in res:
        res.append(x)
    return Set(res)
  def concat(self, value): # value: list, Set...
    for x in value: # Removes duplicates
      if not x in self.data:
        self.data.append(x)
  def __len__(self):     return len(self.data) # len(self)
  def __getitem__(self, key): return self.data[key] # self[i]
  def __and__(self, other):  return self.intersect(other) # self & other
  def __or__(self, other):  return self.union(other) # self | other
  def __repr__(self):     return 'Set:' + repr(self.data) # print()
if __name__ == '__main__':
  x = Set([1, 3, 5, 7])
  print(x.union(Set([1, 4, 7]))) # prints Set:[1, 3, 5, 7, 4]
  print(x | Set([1, 4, 6])) # prints Set:[1, 3, 5, 7, 4, 6]

通过子类方式扩展类型

从Python2.2开始,所有内置类型都能直接创建子类,如list,str,dict以及tuple。这样可以让你通过用户定义的class语句,定制或扩展内置类型:建立类型名称的子类并对其进行定制。类型的子类型实例,可用在原始的内置类型能够出现的任何地方。

class Set(list):
  def __init__(self, value = []):   # Constructor
    list.__init__([])        # Customizes list
    self.concat(value)        # Copies mutable defaults
  def intersect(self, other):     # other is any sequence
    res = []             # self is the subject
    for x in self:
      if x in other:        # Pick common items
        res.append(x)
    return Set(res)         # Return a new Set
  def union(self, other):       # other is any sequence
    res = Set(self)         # Copy me and my list
    res.concat(other)
    return res
  def concat(self, value):       # value: list, Set . . .
    for x in value:         # Removes duplicates
      if not x in self:
        self.append(x)
  def __and__(self, other): return self.intersect(other)
  def __or__(self, other): return self.union(other)
  def __repr__(self):    return 'Set:' + list.__repr__(self)
if __name__ == '__main__':
  x = Set([1,3,5,7])
  y = Set([2,1,4,5,6])
  print(x, y, len(x))
  print(x.intersect(y), y.union(x))
  print(x & y, x | y)
  x.reverse(); print(x)

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
复制粘贴功能的Python程序
Apr 04 Python
python实现随机密码字典生成器示例
Apr 09 Python
Python提取Linux内核源代码的目录结构实现方法
Jun 24 Python
pygame 精灵的行走及二段跳的实现方法(必看篇)
Jul 10 Python
python实现定时发送qq消息
Jan 18 Python
PyQT实现菜单中的复制,全选和清空的功能的方法
Jun 17 Python
tensorflow如何批量读取图片
Aug 29 Python
利用Python小工具实现3秒钟将视频转换为音频
Oct 29 Python
pytorch绘制并显示loss曲线和acc曲线,LeNet5识别图像准确率
Jan 02 Python
Python实现分数序列求和
Feb 25 Python
Python3开发实例之非关系型图数据库Neo4j安装方法及Python3连接操作Neo4j方法实例
Mar 18 Python
想学画画?python满足你!
Dec 24 Python
Python使用文件锁实现进程间同步功能【基于fcntl模块】
Oct 16 #Python
python利用paramiko连接远程服务器执行命令的方法
Oct 16 #Python
基于使用paramiko执行远程linux主机命令(详解)
Oct 16 #Python
python中文件变化监控示例(watchdog)
Oct 16 #Python
python中import reload __import__的区别详解
Oct 16 #Python
使用Python操作excel文件的实例代码
Oct 15 #Python
python出现"IndentationError: unexpected indent"错误解决办法
Oct 15 #Python
You might like
用C/C++扩展你的PHP 为你的php增加功能
2012/09/06 PHP
PHP中设置时区,记录日志文件的实现代码
2013/01/07 PHP
php字符串替换函数substr_replace()用法实例
2015/03/17 PHP
PHP+Mysql+jQuery查询和列表框选择操作实例讲解
2015/10/22 PHP
PHP创建对象的六种方式实例总结
2019/06/27 PHP
jquery.ui.draggable中文文档
2009/11/24 Javascript
JavaScript实现自动消除按钮功能的方法
2015/08/05 Javascript
jQuery Uploadify 上传插件出现Http Error 302 错误的解决办法
2015/12/12 Javascript
AngularJS使用ng-repeat指令实现下拉框
2016/08/23 Javascript
JS公共小方法之判断对象是否为domElement的实例
2016/11/25 Javascript
javascript基础知识讲解
2017/01/11 Javascript
纯JS实现可用于页码更换的飞页特效示例
2018/05/21 Javascript
node.js Promise对象的使用方法实例分析
2019/12/26 Javascript
Vue CLI3移动端适配(px2rem或postcss-plugin-px2rem)
2020/04/27 Javascript
Echarts在Taro微信小程序开发中的踩坑记录
2020/11/09 Javascript
详解为什么Vue中的v-if和v-for不建议一起用
2021/01/13 Vue.js
[01:15:44]首部DOTA2纪录片今日23时全网上映
2014/03/19 DOTA
python的描述符(descriptor)、装饰器(property)造成的一个无限递归问题分享
2014/07/09 Python
Python面向对象类编写细节分析【类,方法,继承,超类,接口等】
2019/01/05 Python
Python判断有效的数独算法示例
2019/02/23 Python
python实现ftp文件传输系统(案例分析)
2020/03/20 Python
Python爬取阿拉丁统计信息过程图解
2020/05/12 Python
python类共享变量操作
2020/09/03 Python
梅西百货澳大利亚:Macy’s Australia
2017/07/26 全球购物
美国网上购买眼镜:Eyeconic
2017/07/29 全球购物
英国音乐设备和乐器商店:Gear4music
2017/10/16 全球购物
Laura Geller官网:美国彩妆品牌
2018/12/29 全球购物
abstract是什么意思
2012/02/12 面试题
外贸英语专业求职信范文
2013/12/25 职场文书
投标单位介绍信
2014/01/09 职场文书
商场活动策划方案
2014/01/24 职场文书
春季运动会广播稿大全
2014/02/19 职场文书
学生操行评语大全
2014/04/24 职场文书
家庭贫困证明书(3篇)
2014/09/15 职场文书
借款协议书
2014/09/16 职场文书
教你用Python+selenium搭建自动化测试环境
2021/06/18 Python