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代码

  1. class Number:
  2. def __init__(self, start):
  3. self.data = start
  4. def __sub__(self, other): #minus method
  5. return Number(self.data - other)
  6. number = Number(20)
  7. y = number – 10 # invoke __sub__ method

[python] view plaincopy

  1. <span style="font-family: 宋体;">class Number:
  2. def __init__(self, start):
  3. self.data = start
  4. def __sub__(self, other): #minus method
  5. return Number(self.data - other)
  6. number = Number(20)
  7. y = number – 10 # invoke __sub__ method</span>

7.2    迭代重载

Python代码

  1. class indexer:
  2. def __getitem__(self, index): #iter override
  3. return index ** 2
  4. X = indexer()
  5. X[2]
  6. for i in range(5):
  7. print X[i]

[python] view plaincopy

  1. <span style="font-family: 宋体;">class indexer:
  2. def __getitem__(self, index): #iter override
  3. return index ** 2
  4. X = indexer()
  5. X[2]
  6. for i in range(5):
  7. print X[i]</span>

7.3    索引重载

Python代码

  1. class stepper:
  2. def __getitem__(self, i):
  3. return self.data[i]
  4. X = stepper()
  5. X.data = 'Spam'
  6. X[1] #call __getitem__
  7. for item in X: #call __getitem__
  8. print item

[python] view plaincopy

  1. <span style="font-family: 宋体;">class stepper:
  2. def __getitem__(self, i):
  3. return self.data[i]
  4. X = stepper()
  5. X.data = 'Spam'
  6. X[1] #call __getitem__
  7. for item in X: #call __getitem__
  8. print item</span>

7.4    getAttr/setAttr重载

Python代码

  1. class empty:
  2. def __getattr__(self,attrname):
  3. if attrname == 'age':
  4. return 40
  5. else:
  6. raise AttributeError,attrname
  7. X = empty()
  8. print X.age #call__getattr__
  9. class accesscontrol:
  10. def __setattr__(self, attr, value):
  11. if attr == 'age':
  12. # Self.attrname = value loops!
  13. self.__dict__[attr] = value
  14. else:
  15. print attr
  16. raise AttributeError, attr + 'not allowed'
  17. X = accesscontrol()
  18. X.age = 40 #call __setattr__
  19. X.name = 'wang' #raise exception

[python] view plaincopy

  1. <span style="font-family: 宋体;">class empty:
  2. def __getattr__(self,attrname):
  3. if attrname == 'age':
  4. return 40
  5. else:
  6. raise AttributeError,attrname
  7. X = empty()
  8. print X.age #call__getattr__
  9. class accesscontrol:
  10. def __setattr__(self, attr, value):
  11. if attr == 'age':
  12. # Self.attrname = value loops!
  13. self.__dict__[attr] = value
  14. else:
  15. print attr
  16. raise AttributeError, attr + 'not allowed'
  17. X = accesscontrol()
  18. X.age = 40 #call __setattr__
  19. X.name = 'wang' #raise exception
  20. </span>

7.5    打印重载

Python代码

  1. class adder:
  2. def __init__(self, value=0):
  3. self.data = value
  4. def __add__(self, other):
  5. self.data += other
  6. class addrepr(adder):
  7. def __repr__(self):
  8. return 'addrepr(%s)' % self.data
  9. x = addrepr(2)  #run __init__
  10. x + 1 #run __add__
  11. print x     #run __repr__

[python] view plaincopy

  1. <span style="font-family: 宋体;">class adder:
  2. def __init__(self, value=0):
  3. self.data = value
  4. def __add__(self, other):
  5. self.data += other
  6. class addrepr(adder):
  7. def __repr__(self):
  8. return 'addrepr(%s)' % self.data
  9. x = addrepr(2)  #run __init__
  10. x + 1 #run __add__
  11. print x     #run __repr__</span>

7.6    Call调用函数重载

Python代码

  1. class Prod:
  2. def __init__(self, value):
  3. self.value = value
  4. def __call__(self, other):
  5. return self.value * other
  6. p = Prod(2) #call __init__
  7. print p(1) #call __call__
  8. print p(2)

[python] view plaincopy

  1. <span style="font-family: 宋体;">class Prod:
  2. def __init__(self, value):
  3. self.value = value
  4. def __call__(self, other):
  5. return self.value * other
  6. p = Prod(2) #call __init__
  7. print p(1) #call __call__
  8. print p(2)</span>

7.7    析构函数重载

Python代码

  1. class Life:
  2. def __init__(self, name='name'):
  3. print 'Hello', name
  4. self.name = name
  5. def __del__(self):
  6. print 'Goodby', self.name
  7. brain = Life('Brain') #call __init__
  8. brain = 'loretta' # call __del__

Python之回调魔法的更多相关文章

  1. python socket发送魔法包网络唤醒开机.py

    python socket发送魔法包网络唤醒开机.py 现在的电脑应该都普遍支持有线网络的WOL了,支持无线网络唤醒的电脑,可能比较少. """ python socke ...

  2. python类之魔法方法

    python类之魔法方法: class A(object): def __init__(self,x): self.x = x def __neg__(self): print('-v') def _ ...

  3. python中的魔法参数:*args和**kwargs

    python中的魔法参数:*args和**kwargs def foo(*args, **kwargs):print 'args = ', argsprint 'kwargs = ', kwargsp ...

  4. python的回调callback

    python的回调callback很强大,特别是函数参数可以是kw,因为一个函数编译后对应函数对象,函数对象中包含了参数的信息,当你调用函数时,会判断传入参数是否正确.通过导入模块,可以使用模块中的函 ...

  5. python里的魔法方法1(构造与析构)

    魔法方法——构造与析构 1.python编程的魔法方法: (1)魔法方法总是被双下划线包围,例如__init__: (2)魔法方法是面向对象的python的一切. 2.__new__(class[,… ...

  6. 跨平台python异步回调机制实现和使用方法

    跨平台python异步回调机制实现和使用方法 这篇文章主要介绍了python异步回调机制的实现方法,提供了使用方法代码 1 将下面代码拷贝到一个文件,命名为asyncore.py 代码如下: impo ...

  7. Python中的魔法方法

    1.什么是魔法方法? 魔法方法就是可以给你的类增加魔力的特殊方法,如果你的对象实现(重载)了这些方法中的某一个,那么这个方法就会在特殊的情况下被 Python 所调用,你可以定义自己想要的行为,而这一 ...

  8. python 自定义回调函数

    回调函数用起来比较爽.特别是在js中,满世界全是回调,那么在python中,怎么来优雅地实现自己的回调函数呢 下面贴一个我写的例子 class BaseHandler(object): def cra ...

  9. python进阶之魔法函数

    __repr__ Python中这个__repr__函数,对应repr(object)这个函数,返回一个可以用来表示对象的可打印字符串.如果我们直接打印一个类,向下面这样 class A():     ...

随机推荐

  1. VC++ UTF-8与GBK格式转换

    // 注释:多字节包括GBK和UTF-8 int GBK2UTF8(char *szGbk,char *szUtf8,int Len) { // 先将多字节GBK(CP_ACP或ANSI)转换成宽字符 ...

  2. C# Exception的子类Serializable警告

    编译时发出的警告:警告 CA2237[1] 将 [Serializable] 添加到 'HardwareException',原因是此类型实现了 ISerializable. Cause[1] An ...

  3. 转: 数字证书原理 https 完整过程解析

    点评: 讲的非常的详细与全面,值得一看. 转: http://www.cnblogs.com/JeffreySun/archive/2010/06/24/1627247.html 文中首先解释了加密解 ...

  4. HTTP协议状态码的含义

    HTTP协议状态码的含义 号码含义-----------------------------------------"100":Continue"101":wi ...

  5. 【转】唱吧CEO陈华:创业四年,我积累的7点管理经验

    现象级产品“唱吧”至今拥有令人羡慕的用户数量,3亿.而这一切,却用了短短不到四年时间.唱吧团队如何应对越来越复杂的市场变化:怎样用人,才能不断激励新老员工做出更棒的业绩:CEO陈华又如何用“下大雪”模 ...

  6. Convolution and Deconvolution

    1.Introduction 2.Convolution 3.Deconvolution 4.Summary

  7. c#数组乱序,打乱数组

    按照random随机给出的index,进行两两交换,当然也存在与上一次一样的数组结果.官方还有一种ICompare的比较器,只是打乱顺序这个没用起来,不知道该怎么搞,╮(╯_╰)╭ public st ...

  8. Oracle中的内置函数在sql中的转换整理

    程序里面经常会即支持Oracle数据库,又支持sql数据库.而有些Oracle内置函数用的比较多,但在sql中语法有些不同,我做了些整理,希望可以帮助大家.... 1.oracle中的内置函数:ora ...

  9. 每天一道LeetCode--344. Reverse String

    Write a function that takes a string as input and returns the string reversed. Example:Given s = &qu ...

  10. 根据DateTime来获取当天是周几(已完结)

    只需要以下代码: @System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(item.CreateTime. ...