首页 > 其他 > 详细

类的运算符

时间:2019-08-25 17:21:12      阅读:155      评论:0      收藏:0      [点我收藏+]

比较运算符
__cmp__(self, other) : 包含两个对象比较的所有情况
__eq__(self, other) : 判断两个对象是否相等
__It__(self, other) : 判断前者是否小于后者
__gt__(self, other) : 判断前者是否大于后者
数字运算符
__add__(self, other) : 加
__sub__(self, other) : 减
__mul__(self, other) : 乘
__div__(self, other) : 除
逻辑运算符
__or__(self, other) : 或运算
__and__(self, other) : 和运算
实例
class Program(object):

def __init__(self, name, age):
self.name = name
if isinstance(age, int):
self.age = age
else:
raise Exception("age must be int")

def __eq__(self, other):
if isinstance(other, Program):
if self.age == other.age:
return True
else:
return False
else:
raise Exception("the type of object must be Program")

def __add__(self, other):
if isinstance(other, Program):
return self.age + other.age
else:
raise Exception("the type of object must be Program")


if __name__ == ‘__main__‘:
p1 = Program(‘mike‘, 21)
p2 = Program(‘john‘, 20)
print(p1 == p2)
print(p1 + p2)
—————————————

类的运算符

原文:https://www.cnblogs.com/liyanyan665/p/11408543.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!