python如何让类支持比较运算


Posted in Python onMarch 20, 2018

本文实例为大家分享了python类支持比较运算的具体代码,供大家参考,具体内容如下

案例:

有时我们希望自定义的类,实例间可以使用比较运算符进行比较,我们自定义比较的行为。

需求:

有一个矩形的类,我们希望比较两个矩形的实例时,比较的是他们的面积

如何解决这个问题?

在类中重新定义比较运算符,所有的比较运算可以简化为两个基本的比较运算,小于和等于比较

单个类比较

#!/usr/bin/python3
 
from math import pi
 
 
class Circle(object):
  def __init__(self, radius):
    self.radius = radius
 
  def get_area(self):
    return round(pow(self.radius, 2) * pi, 2)
 
  # 重定义小于比较
  def __lt__(self, other):
    return self.get_area() < other.get_area()
 
  # 重定义等于比较
  def __eq__(self, other):
    return self.get_area() == other.get_area()
 
if __name__ == '__main__':
  c1 = Circle(3.0)
  c2 = Circle(5.0)
 
  print(c1 < c2)   # c1.__le__(c2)
  print(c1 == c2)   # c1.__eq__(c2)

两个类比较

#!/usr/bin/python3
 
from math import pi
 
 
class Circle(object):
  def __init__(self, radius):
    self.radius = radius
 
  def get_area(self):
    return round(pow(self.radius, 2) * pi, 2)
 
  # 重定义小于比较
  def __lt__(self, other):
    return self.get_area() < other.get_area()
 
  # 重定义等于比较
  def __eq__(self, other):
    return self.get_area() == other.get_area()
 
if __name__ == '__main__':
  c1 = Circle(3.0)
  c2 = Circle(5.0)
 
  print(c1 < c2)   # c1.__le__(c2)
  print(c1 == c2)   # c1.__eq__(c2)
 
 
# !/usr/bin/python3
 
from math import pi
 
 
class Circle(object):
  def __init__(self, radius):
    self.radius = radius
 
  def get_area(self):
    return round(pow(self.radius, 2) * pi, 2)
 
  # 重定义小于比较
  def __lt__(self, other):
    return self.get_area() < other.get_area()
 
  # 重定义等于比较
  def __eq__(self, other):
    return self.get_area() == other.get_area()
 
 
class Rectangle(object):
  def __init__(self, width, height):
    self.width = width
    self.height = height
 
  def get_area(self):
    return self.width * self.height
 
  # 重定义小于比较
  def __lt__(self, other):
    return self.get_area() < other.get_area()
 
  # 重定义等于比较
  def __eq__(self, other):
    return self.get_area() == other.get_area()
 
 
if __name__ == '__main__':
  c1 = Circle(5.0)
  R1 = Rectangle(4.0, 5.0)
 
  print(c1 > R1) # c1.__le__(c2)
  print(c1 == R1) # c1.__eq__(c2) 

会出现一个问题,重复代码,如何解决?

通过functools下类的装饰器total_ordering进行比较

# !/usr/bin/python3
 
from math import pi
from abc import abstractmethod
from functools import total_ordering
 
 
@total_ordering
class Shape(object):
  """
  定义一个抽象类,重定义比较运算,再定义抽象方法,然后子类通过这个方法进行比较,
  其他子类比较类都需要重构抽象方法,实现比较运算
  """
   
  # 标记比较方法,抽象方法
  @abstractmethod
  def get_area(self):
    pass
   
  # 重定义小于比较
  def __lt__(self, other):
    return self.get_area() < other.get_area()
   
  # 重定义等于比较
  def __eq__(self, other):
    return self.get_area() == other.get_area()
 
 
class Circle(Shape):
  def __init__(self, radius):
    self.radius = radius
   
  def get_area(self):
    return round(pow(self.radius, 2) * pi, 2)
   
 
class Rectangle(Shape):
  def __init__(self, width, height):
    self.width = width
    self.height = height
   
  def get_area(self):
    return self.width * self.height
 
 
if __name__ == '__main__':
  c1 = Circle(5.0)
  R1 = Rectangle(4.0, 5.0)
   
  print(c1 > R1) # c1.__le__(c2)
  print(c1 == R1) # c1.__eq__(c2)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
利用Python的Django框架生成PDF文件的教程
Jul 22 Python
win10下Python3.6安装、配置以及pip安装包教程
Oct 01 Python
使用python对文件中的单词进行提取的方法示例
Dec 21 Python
python 实现提取某个索引中某个时间段的数据方法
Feb 01 Python
详解Django中CBV(Class Base Views)模型源码分析
Feb 25 Python
pyinstaller打包多个py文件和去除cmd黑框的方法
Jun 21 Python
python 绘制拟合曲线并加指定点标识的实现
Jul 10 Python
Django REST Framework之频率限制的使用
Sep 29 Python
解决Python发送Http请求时,中文乱码的问题
Apr 30 Python
Jupyter notebook如何实现指定浏览器打开
May 13 Python
Django contrib auth authenticate函数源码解析
Nov 12 Python
Python爬虫基础之爬虫的分类知识总结
May 13 Python
python如何为创建大量实例节省内存
Mar 20 #Python
python如何对实例属性进行类型检查
Mar 20 #Python
python如何在循环引用中管理内存
Mar 20 #Python
Windows 7下Python Web环境搭建图文教程
Mar 20 #Python
Python中%是什么意思?python中百分号如何使用?
Mar 20 #Python
Python实现类似比特币的加密货币区块链的创建与交易实例
Mar 20 #Python
Django开发中复选框用法示例
Mar 20 #Python
You might like
PHP 实例化类的一点摘记
2008/03/23 PHP
header中Content-Disposition的作用与使用方法
2012/06/13 PHP
PHP进程同步代码实例
2015/02/12 PHP
用php代码限制国内IP访问我们网站
2015/09/26 PHP
javascript cookie解码函数(兼容ff)
2008/03/17 Javascript
javascript cookie操作类的实现代码小结附使用方法
2010/06/02 Javascript
JS+CSS实现自适应选项卡宽度的圆角滑动门效果
2015/09/15 Javascript
JS+CSS相对定位实现的下拉菜单
2015/10/06 Javascript
关于原生js中bind函数的简单实现
2016/08/10 Javascript
jquery 实现回车登录详解及实例代码
2016/10/23 Javascript
web 屏蔽BackSpace键实例代码
2016/12/24 Javascript
jquery实现百叶窗效果
2017/01/12 Javascript
微信小程序开发之相册选择和拍照详解及实例代码
2017/02/22 Javascript
JS完成画圆圈的小球
2017/03/07 Javascript
一个可复用的vue分页组件
2017/05/15 Javascript
Mobile Web开发基础之四--处理手机设备的横竖屏问题
2017/08/11 Javascript
探索Vue高阶组件的使用
2018/01/08 Javascript
详解微信小程序实现仿微信聊天界面(各种细节处理)
2019/02/17 Javascript
vue 中 beforeRouteEnter 死循环的问题
2019/04/23 Javascript
vue下的@change事件的实现
2019/10/25 Javascript
Python中的rjust()方法使用详解
2015/05/19 Python
Python操作Sql Server 2008数据库的方法详解
2018/05/17 Python
python爬虫模拟浏览器访问-User-Agent过程解析
2019/12/28 Python
TensorFlow tf.nn.max_pool实现池化操作方式
2020/01/04 Python
python 已知三条边求三角形的角度案例
2020/04/12 Python
魔幻般冒泡背景的CSS3按钮动画
2016/02/27 HTML / CSS
加州风格的游泳和沙滩装品牌:Cupshe
2019/06/10 全球购物
美国在线和移动免费会员制批发零售商:Boxed(移动端的Costco)
2020/01/02 全球购物
法警的竞聘演讲稿
2014/01/02 职场文书
公司庆典活动邀请函
2014/01/09 职场文书
《自然之道》教学反思
2014/02/11 职场文书
学校庆元旦歌咏比赛主持词
2014/03/18 职场文书
小学生综合素质评语
2014/04/23 职场文书
公务员考察材料
2014/12/23 职场文书
交通事故赔偿起诉书
2015/05/20 职场文书
幼儿园体操比赛口号
2015/12/25 职场文书