用特殊方法定制类 ***********************#特殊方法是Python 中用来扩充类的强有力的方式。它们可以实现:# 模拟标准类型# 重载操作符#特殊方法允许类通过重载标准操作符+,*, 甚至包括分段下标及映射操作操作[] 来模拟标准#类型。如同其它很多保留标识符,这些方法都是以双下划线(__)开始及结尾的。#下表列出了所有特殊方法及其它的描述#特殊方法 描述###基本定制型#C.__init__(self[, arg1, ...]) 构造器(带一些可选的参数)#C.__new__(self[, arg1, ...]) 构造器(带一些可选的参数);通常用在设置不变数据类型的子类。#C.__del__(self) 解构器#C.__str__(self) 可打印的字符输出;内建str()及print 语句#C.__repr__(self) 运行时的字符串输出;内建repr() 和‘‘ 操作符#C.__unicode__(self) Unicode 字符串输出;内建unicode()#C.__call__(self, *args) 表示可调用的实例#C.__nonzero__(self) 为object 定义False 值;内建bool() (从2.2 版开始)#C.__len__(self) “长度”(可用于类);内建len()####对象(值)比较c#C.__cmp__(self, obj) 对象比较;内建cmp()#C.__lt__(self, obj) and 小于/小于或等于;对应<及<=操作符#C.__gt__(self, obj) and 大于/大于或等于;对应>及>=操作符#C.__eq__(self, obj) and 等于/不等于;对应==,!=及<>操作符######属性#C.__getattr__(self, attr) 获取属性;内建getattr();仅当属性没有找到时调用#C.__setattr__(self, attr, val) 设置属性#C.__delattr__(self, attr) 删除属性#C.__geta
ttribute__(self, attr) 获取属性;内建getattr();总是被调用#C.__get__(self, attr) (描述符)获取属性#C.__set__(self, attr, val) (描述符)设置属性#C.__delete__(self, attr) (描述符)删除属性####数值类型:二进制操作符#C.__*add__(self, obj) 加;+操作符#C.__*sub__(self, obj) 减;-操作符#C.__*mul__(self, obj) 乘;*操作符#C.__*div__(self, obj) 除;/操作符#C.__*truediv__(self, obj) True 除;/操作符#C.__*floordiv__(self, obj) Floor 除;//操作符#C.__*mod__(self, obj) 取模/取余;%操作符#C.__*divmod__(self, obj) 除和取模;内建divmod()#C.__*pow__(self, obj[, mod]) 乘幂;内建pow();**操作符#C.__*lshift__(self, obj) 左移位;<<操作符#C.__*rshift__(self, obj) 右移;>>操作符#C.__*and__(self, obj) 按位与;&操作符#C.__*or__(self, obj) 按位或;|操作符#C.__*xor__(self, obj) 按位与或;^操作符####数值类型:一元操作符#C.__neg__(self) 一元负#C.__pos__(self) 一元正#C.__abs__(self) 绝对值;内建abs()#C.__invert__(self) 按位求反;~操作符######数值类型:数值转换#C.__complex__(self, com) 转为complex(复数);内建complex()#C.__int__(self) 转为int;内建int()#C.__long__(self) 转为long;内建long()#C.__float__(self) 转为float;内建float()######数值类型:基本表示法(String)#C.__oct__(self) 八进制表示;内建oct()#C.__hex__(self) 十六进制表示;内建hex()######数值类型:数值压缩#C.__coerce__(self, num) 压缩成同样的数值类型;内建coerce()#C.__index__(self) 在有必要时,压缩可选的数值类型为整型(比如:用于切片索引等等)####序列类型#C.__len__(self) 序列中项的数目#C.__getitem__(self, ind) 得到单个序列元素#C.__setitem__(self, ind,val) 设置单个序列元素#C.__delitem__(self, ind) 删除单个序列元素#C.__getslice__(self, ind1,ind2) 得到序列片断#C.__setslice__(self, i1, i2,val)设置序列片断#C.__delslice__(self, ind1,ind2) 删除序列片断#C.__contains__(self, val) 测试序列成员;内建in 关键字#C.__*add__(self,obj) 串连;+操作符#C.__*mul__(self,obj) 重复;*操作符#C.__iter__(self) 创建迭代类;内建iter()######映射类型#C.__len__(self) mapping 中的项的数目#C.__hash__(self) 散列(hash)函数值#C.__getitem__(self,key) 得到给定键(key)的值#C.__setitem__(self,key,val) 设置给定键(key)的值#C.__delitem__(self,key) 删除给定键(key)的值#C.__missing__(self,key) 给定键如果不存在字典中,
则提供一个默认值## 12.1 简单定制(RoundFloat2)#类的作用:保存浮点数,四舍五入,保留两位小数位。 通过断言来控制输入类型#class RoundFloatManual(object):# def __init__(self, val):# assert isinstance(val, float), \# "Value must be a float!"# self.value = round(val, 2)## def __str__(self):# return str(self.value)## __repr__ = __str__##C.__str__(self) 可打印的字符输出;内建str()及print 语句#C.__repr__(self) 运行时的字符串输出;内建repr() 和‘‘ 操作符#rfm=RoundFloatManual(8.888)#print(rfm)#-->8.89## 12.2 数值定制(Time60)#class Time60(object):# 'Time60 - track hours and minutes'## def __init__(self, hr, min):# 'Time60 constructor - takes hours and minutes'# self.hr = hr# self.min = min## def __str__(self):# 'Time60 - string representation'# return '%d:%d' % (self.hr, self.min)## __repr__ = __str__## def __add__(self, other):# 'Time60 - overloading the addition operator'# return self.__class__(self.hr + other.hr,self.min + other.min)# # def __iadd__(self, other):# 'Time60 - overloading in-place addition'# self.hr += other.hr# self.min += other.min# return self## 12.3 迭代器(RandSeq 和AnyIter)## RandSeq#from random import choice##class RandSeq(object):# def __init__(self, seq):# self.data = seq## def __iter__(self):# return self## def next(self):# return choice(self.data)## 任意项的迭代器(anyIter.py)#class AnyIter(object):# def __init__(self, data, safe=False):# self.safe = safe# self.iter = iter(data)## def __iter__(self):# return self## def next(self, howmany=1):# retval = []# for eachItem in range(howmany):# try:# retval.append(self.iter.next())# except StopIteration:# if self.safe:# break# else:# raise# return retval## 12.4 *多类型定制(NumStr)#class NumStr(object):# def __init__(self, num=0, string=''):# self.__num= num# self.__string = string## def __str__(self): # define for str()# return '[%d :: %r]' %(self.__num, self.__string)# # __repr__ = __str__## def __add__(self, other): # define for s+o# if isinstance(other, NumStr):# return self.__class__(self.__num + \# other.__num, \# self.__string + other.__string)# else:# raise TypeError('Illegal argument type for built-in operation')## def __mul__(self, num): # define for o*n# if isinstance(num, int):# return self.__class__(self.__num__ * num,self.__string__ * num)# else:# raise TypeError('Illegal argument type for built-in operation')## def __nonzero__(self):
# False if both are# return self.__num or len(self.__string)##a = NumStr(3, 'foo')#b = NumStr(3, 'goo')#c = NumStr(2, 'foo')#d = NumStr()#e = NumStr(string='boo')#f = NumStr(1)#print(a)#print(b)#print(c)#print(d)#print(e)#print(f)#-->#[3 :: 'foo']#[3 :: 'goo']#[2 :: 'foo']#[0 :: '']#[0 :: 'boo']#[1 :: '']