Python实现扩展内置类型的方法分析
本文实例讲述了Python实现扩展内置类型的方法。分享给大家供大家参考,具体如下:
简介
除了实现新的类型的对象方式外,有时我们也可以通过扩展Python内置类型,从而支持其它类型的数据结构,比如为列表增加队列的插入和删除的方法。本文针对此问题,结合实现集合功能的实例,介绍了扩展Python内置类型的两种方法:通过嵌入内置类型来扩展类型和通过子类方式扩展类型。
通过嵌入内置类型扩展
下面例子通过将list对象作为嵌入类型,实现集合对象,并增加了一下运算符重载。这个类知识包装了Python的列表,以及附加的集合运算。
classSet: def__init__(self,value=[]):#Constructor self.data=[]#Managesalist self.concat(value) defintersect(self,other):#otherisanysequence res=[]#selfisthesubject forxinself.data: ifxinother:#Pickcommonitems res.append(x) returnSet(res)#ReturnanewSet defunion(self,other):#otherisanysequence res=self.data[:]#Copyofmylist forxinother:#Additemsinother ifnotxinres: res.append(x) returnSet(res) defconcat(self,value):#value:list,Set... forxinvalue:#Removesduplicates ifnotxinself.data: self.data.append(x) def__len__(self):returnlen(self.data)#len(self) def__getitem__(self,key):returnself.data[key]#self[i] def__and__(self,other):returnself.intersect(other)#self&other def__or__(self,other):returnself.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])))#printsSet:[1,3,5,7,4] print(x|Set([1,4,6]))#printsSet:[1,3,5,7,4,6]
通过子类方式扩展类型
从Python2.2开始,所有内置类型都能直接创建子类,如list,str,dict以及tuple。这样可以让你通过用户定义的class语句,定制或扩展内置类型:建立类型名称的子类并对其进行定制。类型的子类型实例,可用在原始的内置类型能够出现的任何地方。
classSet(list): def__init__(self,value=[]):#Constructor list.__init__([])#Customizeslist self.concat(value)#Copiesmutabledefaults defintersect(self,other):#otherisanysequence res=[]#selfisthesubject forxinself: ifxinother:#Pickcommonitems res.append(x) returnSet(res)#ReturnanewSet defunion(self,other):#otherisanysequence res=Set(self)#Copymeandmylist res.concat(other) returnres defconcat(self,value):#value:list,Set... forxinvalue:#Removesduplicates ifnotxinself: self.append(x) def__and__(self,other):returnself.intersect(other) def__or__(self,other):returnself.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数据结构与算法教程》、《PythonSocket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。