Python之回调魔法
Python中魔法(前后又下划线)会在对象的生命周期被回调. 借助这种回调, 可以实现AOP或者拦截器的思想.
在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],
__len__ 长度 len(X)
__cmp__ 比较 X==Y,X<Y
__lt__ 小于 X<Y
__eq__ 等于 X=Y
__radd__ Right-Side + +X
__iadd__ += X+=Y
__iter__ 迭代 For In
7.1 减法重载
Python代码
- 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
[python] view plaincopy
- <span style="font-family: 宋体;">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</span>
7.2 迭代重载
Python代码
- class indexer:
- def __getitem__(self, index): #iter override
- return index ** 2
- X = indexer()
- X[2]
- for i in range(5):
- print X[i]
[python] view plaincopy
- <span style="font-family: 宋体;">class indexer:
- def __getitem__(self, index): #iter override
- return index ** 2
- X = indexer()
- X[2]
- for i in range(5):
- print X[i]</span>
7.3 索引重载
Python代码
- class stepper:
- def __getitem__(self, i):
- return self.data[i]
- X = stepper()
- X.data = 'Spam'
- X[1] #call __getitem__
- for item in X: #call __getitem__
- print item
[python] view plaincopy
- <span style="font-family: 宋体;">class stepper:
- def __getitem__(self, i):
- return self.data[i]
- X = stepper()
- X.data = 'Spam'
- X[1] #call __getitem__
- for item in X: #call __getitem__
- print item</span>
7.4 getAttr/setAttr重载
Python代码
- 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 loops!
- self.__dict__[attr] = value
- else:
- print attr
- raise AttributeError, attr + 'not allowed'
- X = accesscontrol()
- X.age = 40 #call __setattr__
- X.name = 'wang' #raise exception
[python] view plaincopy
- <span style="font-family: 宋体;">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 loops!
- self.__dict__[attr] = value
- else:
- print attr
- raise AttributeError, attr + 'not allowed'
- X = accesscontrol()
- X.age = 40 #call __setattr__
- X.name = 'wang' #raise exception
- </span>
7.5 打印重载
Python代码
- class adder:
- def __init__(self, value=0):
- self.data = value
- def __add__(self, other):
- self.data += other
- class addrepr(adder):
- def __repr__(self):
- return 'addrepr(%s)' % self.data
- x = addrepr(2) #run __init__
- x + 1 #run __add__
- print x #run __repr__
[python] view plaincopy
- <span style="font-family: 宋体;">class adder:
- def __init__(self, value=0):
- self.data = value
- def __add__(self, other):
- self.data += other
- class addrepr(adder):
- def __repr__(self):
- return 'addrepr(%s)' % self.data
- x = addrepr(2) #run __init__
- x + 1 #run __add__
- print x #run __repr__</span>
7.6 Call调用函数重载
Python代码
- class Prod:
- def __init__(self, value):
- self.value = value
- def __call__(self, other):
- return self.value * other
- p = Prod(2) #call __init__
- print p(1) #call __call__
- print p(2)
[python] view plaincopy
- <span style="font-family: 宋体;">class Prod:
- def __init__(self, value):
- self.value = value
- def __call__(self, other):
- return self.value * other
- p = Prod(2) #call __init__
- print p(1) #call __call__
- print p(2)</span>
7.7 析构函数重载
Python代码
- class Life:
- def __init__(self, name='name'):
- print 'Hello', name
- self.name = name
- def __del__(self):
- print 'Goodby', self.name
- brain = Life('Brain') #call __init__
- brain = 'loretta' # call __del__
Python之回调魔法的更多相关文章
- python socket发送魔法包网络唤醒开机.py
python socket发送魔法包网络唤醒开机.py 现在的电脑应该都普遍支持有线网络的WOL了,支持无线网络唤醒的电脑,可能比较少. """ python socke ...
- python类之魔法方法
python类之魔法方法: class A(object): def __init__(self,x): self.x = x def __neg__(self): print('-v') def _ ...
- python中的魔法参数:*args和**kwargs
python中的魔法参数:*args和**kwargs def foo(*args, **kwargs):print 'args = ', argsprint 'kwargs = ', kwargsp ...
- python的回调callback
python的回调callback很强大,特别是函数参数可以是kw,因为一个函数编译后对应函数对象,函数对象中包含了参数的信息,当你调用函数时,会判断传入参数是否正确.通过导入模块,可以使用模块中的函 ...
- python里的魔法方法1(构造与析构)
魔法方法——构造与析构 1.python编程的魔法方法: (1)魔法方法总是被双下划线包围,例如__init__: (2)魔法方法是面向对象的python的一切. 2.__new__(class[,… ...
- 跨平台python异步回调机制实现和使用方法
跨平台python异步回调机制实现和使用方法 这篇文章主要介绍了python异步回调机制的实现方法,提供了使用方法代码 1 将下面代码拷贝到一个文件,命名为asyncore.py 代码如下: impo ...
- Python中的魔法方法
1.什么是魔法方法? 魔法方法就是可以给你的类增加魔力的特殊方法,如果你的对象实现(重载)了这些方法中的某一个,那么这个方法就会在特殊的情况下被 Python 所调用,你可以定义自己想要的行为,而这一 ...
- python 自定义回调函数
回调函数用起来比较爽.特别是在js中,满世界全是回调,那么在python中,怎么来优雅地实现自己的回调函数呢 下面贴一个我写的例子 class BaseHandler(object): def cra ...
- python进阶之魔法函数
__repr__ Python中这个__repr__函数,对应repr(object)这个函数,返回一个可以用来表示对象的可打印字符串.如果我们直接打印一个类,向下面这样 class A(): ...
随机推荐
- 如何使用虚拟机在U盘上安装linux
如何使用虚拟机在U盘上安装linux 将linux安装到U盘的方法有很多,我觉得用虚拟机还是很方便的,直接上干货 创建虚拟机 我用的vbox,vmware也一样.配置随意一点就好,配置高安装的也快. ...
- Umbraco(1) - Document Types(翻译文档)
Document Types Data first nothing in = nothing out! 任何网站的第一步是创建一个"Document Type"-几次安装后你会熟悉 ...
- 使用JDBC-ODBC读取Excel文件
以下代码我没有真正去实践,紧做为总结,方便以后查阅: 这种方法需要设置ODBC源..... 参考: http://xytang.blogspot.com/2008/02/how-to-connect- ...
- 【求无向图的桥,有重边】ZOJ - 2588 Burning Bridges
模板题——求割点与桥 题意,要使一个无向图不连通,输出必定要删掉的边的数量及其编号.求桥的裸题,可拿来练手. 套模板的时候注意本题两节点之间可能有多条边,而模板是不判重边的,所以直接套模板的话,会将重 ...
- # 基于Gitolite搭建Git Server - 支持SSH&HTTP
Git, 一个分布式的版本管理工具,我认为其革命性的点:在于改变了用户协作的方式,使得协作更简单. 下面讲述 使用一个开源软件 Gitolite搭建一个Git Sever, 并给了一个推荐的团队协助方 ...
- codeforces 675E E. Trains and Statistic(线段树+dp)
题目链接: E. Trains and Statistic time limit per test 2 seconds memory limit per test 256 megabytes inpu ...
- Oracle查询银行卡数、修改余额及验证登录
建立Oracle表 create table T_BANKCARD ( card_id VARCHAR2(20) not null, user_id VARCHAR2(20) not null, us ...
- [转载]mysql插入大量数据
mysql的批量数据格式, 比如 INSERT INTO TABLES (LABLE1,LABLE2,LABLE3,...) VALUES(NUM11,NUM12,NUM13,...), (NUM ...
- DynamicObject数据包操作
DynamicObject的结构非常简单明了,就是一个字典,类似于一个Dictionary<string, object>,其中的object可能是一个简单值(普通字段),可能是一个复杂值 ...
- MySQL 5.7 Zip 安装(win7)
参考官方文档 http://dev.mysql.com/doc/refman/5.7/en/windows-install-archive.html 2.3.5.1 Extracting the In ...