免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2548 | 回复: 0

[转]Python运算符重载 [复制链接]

论坛徽章:
0
发表于 2009-10-20 22:51 |显示全部楼层
运算符重载
在Python语言中提供了类似于C++的运算符重在功能:
一下为Python运算符重在调用的方法如下:
Method        Overloads        Call for
__init__        构造函数        X=Class()
__del__        析构函数        对象销毁
__add__        +                X+Y,X+=Y
__or__        |                X|Y,X|=Y
__repr__        打印转换        print X,repr(X)
__str__        打印转换        print X,str(X)
__call__        调用函数        X()
__getattr_    限制            X.undefine
__setattr__    取值            X.any=value
__getitem__    索引            X[key],
                            For If
__len__        长度            len(X)
__cmp__        比较            X==Y,Xclass indexer:
    def __getitem__(self, index): #iter override
        return index ** 2
X = indexer()
X[2]
for i in range(5):
    print X
减法重载
class Number:
    def __init__(self, start):
        self.data = start
    def __sub__(self, other): #minus method
        return Number(self.data - other)
number = Number(20)
y = number – 10 # invoke __sub__ method
索引重载
class stepper:
    def __getitem__(self, i):
        return self.data
   
X = stepper()
X.data = 'Spam'
X[1] #call __getitem__
for item in X: #call __getitem__
    print item
getAttr/setAttr重载
class empty:
    def __getattr__(self,attrname):
        if attrname == 'age':
            return 40
        else:
            raise AttributeError,attrname
X = empty()
print X.age #call__getattr__
class accesscontrol:
    def __setattr__(self, attr, value):
        if attr == 'age':
            # Self.attrname = value
            self.__dict__[attr] = value
        else:
            print attr
            raise AttributeError, attr + 'not allowed'
X = accesscontrol()
X.age = 40      #call __setattr__
X.name = 'wang' #raise exception
unicode重载
#coding:utf-8
class adder:   
    def __unicode__(self):
        return u'hello world'
print unicode(x)    #hello world


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/103690/showart_2074368.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP