Python
- 一、示例代码
- 二、Python中的魔法方法
一、示例代码
- 有理数类
import mathclass rational:def __init__(self,p,q):self.p = pself.q = qdef __str__(self):return "{} / {}".format(self.p,self.q)def simplify(self):gcd = math.gcd(self.p,self.q)return rational(int(self.p / gcd),int(self.q / gcd))#加def __add__(self, other):return rational(self.p + other.p,self.q + other.q)#减def __sub__(self, other):return rational(self.p * other.q - other.p * self.q,self.q * other.q)#乘def __mul__(self, other):return rational(self.p * other.p,self.q * other.q)#除def __div__(self, other):return rational(self.p * other.q,self.q * other.p)#相等def __eq__(self, other):fz = self.simplify()fm = other.simplify()return fz.p == fm.p and fz.q == fm.qdef __float__(self):return float(self.p / self.q)
Python中一切皆对象,如常见的加(+)、减(-)、乘(*)、除(/)、相等(==)都是调用类中的某个方法
eg:
self:指的是调用该函数的对象,指代的是对象本身,和Java中的this相同
r = rational(1,2)
r1 = rational(1,4)
r + r1表示r对象调用+方法,也就是__add__方法,传入r1对象作为参数,可以理解为
r.+(r1)
同理减、乘、除都是
二、Python中的魔法方法
__xx __()的函数叫做魔法方法,指的是具有特殊功能的函数
1、__init __()
- 构造方法,在实例化对象时默认被调用,不需要手动调用
2、__str __()
- 当使用print输出对象的时候,默认打印对象的内存地址。如果类定义了__str
__方法,那么就会打印从在这个方法中return的数据,相当于Java中重写toString()方法
3、__del __()
当删除对象时,python解释器也会默认调用__del __()方法
del 对象