Python运算符重载用法实例分析


Posted in Python onJune 01, 2015

本文实例讲述了Python运算符重载用法。分享给大家供大家参考。具体如下:

在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

1. 减法重载

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

2. 迭代重载

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

3. 索引重载

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

4. 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 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 
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

5. 打印重载

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__ 
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__

6. Call调用函数重载

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) 
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)

7. 析构函数重载

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 相关文章推荐
跟老齐学Python之类的细节
Oct 13 Python
零基础写python爬虫之抓取百度贴吧代码分享
Nov 06 Python
深入了解Python数据类型之列表
Jun 24 Python
PyQt5每天必学之切换按钮
Aug 20 Python
linux下python使用sendmail发送邮件
May 22 Python
[原创]Python入门教程5. 字典基本操作【定义、运算、常用函数】
Nov 01 Python
pyqt5 QProgressBar清空进度条的实例
Jun 21 Python
对python 中class与变量的使用方法详解
Jun 26 Python
Python实现决策树并且使用Graphviz可视化的例子
Aug 09 Python
django2.2安装错误最全的解决方案(小结)
Sep 24 Python
python标准库sys和OS的函数使用方法与实例详解
Feb 12 Python
浅析python 通⽤爬⾍和聚焦爬⾍
Sep 28 Python
python使用Image处理图片常用技巧分析
Jun 01 #Python
python实现图片变亮或者变暗的方法
Jun 01 #Python
wxPython中listbox用法实例详解
Jun 01 #Python
在Python的Django框架下使用django-tagging的教程
May 30 #Python
使用url_helper简化Python中Django框架的url配置教程
May 30 #Python
在Python的Django框架中simple-todo工具的简单使用
May 30 #Python
Python中Django框架下的staticfiles使用简介
May 30 #Python
You might like
php 批量生成html,txt文件的实现代码
2013/06/26 PHP
php接口数据加密、解密、验证签名
2015/03/12 PHP
PHP中的魔术方法总结和使用实例
2015/05/11 PHP
Yii2实现log输出到file及database的方法
2016/11/12 PHP
PHP利用百度ai实现文本和图片审核
2019/05/08 PHP
IE6 弹出Iframe层中的文本框“经常”无法获得输入焦点
2009/12/27 Javascript
『jQuery』名称冲突使用noConflict方法解决
2013/04/22 Javascript
JS过滤url参数特殊字符的实现方法
2013/12/24 Javascript
IE中鼠标经过option触发mouseout的解决方法
2015/01/29 Javascript
AngularJS学习笔记之表单验证功能实例详解
2017/07/06 Javascript
Angular2环境搭建具体操作步骤(推荐)
2017/08/04 Javascript
js微信分享实现代码
2020/10/11 Javascript
vue结合Echarts实现点击高亮效果的示例
2018/03/17 Javascript
微信小程序批量监听输入框对按钮样式进行控制的实现代码
2019/10/12 Javascript
解决qrcode.js生成二维码时必须定义一个空div的问题
2020/07/09 Javascript
详解uniapp的全局变量实现方式
2021/01/11 Javascript
Python第三方Window模块文件的几种安装方法
2018/11/22 Python
python导入模块交叉引用的方法
2019/01/19 Python
python中update的基本使用方法详解
2019/07/17 Python
Python企业编码生成系统之系统主要函数设计详解
2019/07/26 Python
Python日期格式和字符串格式相互转换的方法
2020/02/18 Python
Python实现电视里的5毛特效实例代码详解
2020/05/15 Python
Django自关联实现多级联动查询实例
2020/05/19 Python
python 基于opencv实现图像增强
2020/12/23 Python
英语专业推荐信
2013/11/16 职场文书
公司年会晚宴演讲稿
2014/01/06 职场文书
翻译学院毕业生自荐书
2014/02/02 职场文书
土地租赁意向书
2014/07/30 职场文书
八荣八耻的活动方案
2014/08/16 职场文书
夫妻分居协议书范本
2014/11/28 职场文书
销售辞职信范文
2015/03/02 职场文书
区域销售经理岗位职责
2015/04/02 职场文书
入团介绍人意见范文
2015/06/04 职场文书
导游词之镜泊湖
2019/12/09 职场文书
Python爬虫之爬取二手房信息
2021/04/27 Python
Windows Server 修改远程桌面端口的实现
2022/06/25 Servers