1、构造和析构
- __init__()
>>>class Rectangle:
def __init__(self,x,y):
self.x=x
self.y=y
def getPerl(self):
return (self.x+self.y)*2
def getArea(self):
return self.x*self.y
>>> rect=Rectangle(3, 4)
>>> rect.getPerl()
14
>>> rect.getArea()
12
- __new__(cls[,…])
__new__需要返回一个对象,通常返回class类的实例对象。通常在继承不可变类型但又需要修改时实验
>>>class CapStr(str):
def __new__(cls,string):
string=string.upper()
return str.__new__(cls,string)
>>> a=CapStr("I love")
>>> a
'I LOVE'
- __del__(self)
当没有变量指向某个对象时,才会调用该方法删除这个对象。
>>>class C:
def __init__(self):
print("我是__init__方法,我被调用了")
def __del__(self):
print("我是__del__方法,我被调用了")
>>> c1=C()
我是__init__方法,我被调用了
>>> c2=c1
>>> c3=c2
>>> del c3
>>> del c2
>>> del c1
我是__del__方法,我被调用了
2、算数运算
表1 算数运算方法
名称 | 描述 |
---|
__add__(self,other) | 定义加法的行为:+ |
__sub__(self,other) | 定义减法的行为:- |
__mul__(self,other) | 定义乘法的行为:* |
__truediv__(self,other) | 定义真除法的行为:/ |
__floordiv__(self,other) | 定义整数除法的行为:// |
__mod__(self,other) | 定义取模算法的行为:% |
__divmod__(self,other) | 定义当被divmod()调用时的行为 |
__pow__(self,other[,modulo]) | 定义当被power()调用或**运算时的行为 |
__lshift__(self,other) | 定义按位左移位的行为:<< |
__rshift__(self,other) | 定义按位右移位的行为:>> |
__and__(self,other) | 定义按位与操作的行为:& |
__xor__(self,other) | 定义按位异或操作的行为:^ |
__or__(self,other) | 定义按位或操作的行为:| |
例:
>>>class New_int(int):
def __add__(self,other):
return int.__sub__(self,other)
def __sub__(self,other):
return int.__add__(self,other)
>>> a=New_int(3)
>>> b=New_int(5)
>>> a+b
-2
>>> a-b
8
- 反运算(上表方法前面加r,如__radd__(self,other))
如a+b,当a对象的__add__方法没有找到或不支持时,就会找到b对象的__radd__方法,即反运算。
>>> class Nint(int):
def __radd__(self,other):
return int.__sub__(self,other)
>>> a=Nint(5)
>>> b=Nint(3)
>>> a+b
8
>>> 1+b
2
- 增量赋值运算
表一中的方法前面加i,如__iadd__(self,other),表示“+=”运算,其他方法同理。 - 一元操作符
操作符 | 描述 |
---|
__neg__(self) | 定义正号的行为:+x |
__pos__(self) | 定义负号的行为:-x |
__abs__(self) | 定义当被abs()调用时的行为 |
__invert__(self) | 定义按位求反的行为:~x |
3、属性访问
>>> class C:
def __init__(self):
self.x="xyz"
>>> c=C()
>>> c.x
'xyz'
>>> getattr(c,"x","没有这个对象")
'xyz'
>>> getattr(c,"y","没有这个对象")
'没有这个对象'
方法 | 说明 |
---|
__getattr__(self,name) | 定义当用户试图获取一个不存在属性时的行为 |
__getattribute__(self,name) | 定义当该类的属性被访问时的行为 |
__setattr__(self,name,value) | 定义一个属性被设置时的行为 |
__delattr__(self,name) | 定义一个属性被删除时的行为 |
>>> class C:
def __getattribute__(self,name):
print("getattribute")
return super().__getattribute__(name)
def __getattr__(self,name):
print("getattr")
def __setattr__(self,name,value):
print("setattr")
super().__setattr__(name,value)
def __delattr__(self,name):
print("delattr")
super().__delattr__(name)
>>> c=C()
c.x
getattribute
getattr
>>> c.x=1
setattr
>>> c.x
getattribute
1
>>> del c.x
delattr
class Rectangle:
def __init__(self,width=0,height=0):
self.width=width
self.height=height
def __setattr__(self,name,value):
if name=="square":
self.width=value
self.height=value
else:
super().__setattr__(name,value)
def getArea(self):
return self.width*self.height
4、描述符
描述符就是将某种特殊类型的类的实例指派给另一个类的属性。
方法 | 描述 |
---|
__get__(self,instance,owner) | 用于访问属性,它用于返回属性的值 |
__set__(self,instance,value) | 将在属性分配操作中调用,不返回任何内容 |
__delete__(self,instance) | 控制删除操作,不返回任何内容 |