Python学习--Task11:魔法方法

1、构造和析构

  1. __init__()
>>>class Rectangle:
       def __init__(self,x,y):#__init__返回None
           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
  1. __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'
  1. __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
  1. 反运算(上表方法前面加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#未找到1的add方法,触发radd
2
  1. 增量赋值运算
    表一中的方法前面加i,如__iadd__(self,other),表示“+=”运算,其他方法同理。
  2. 一元操作符
操作符描述
__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)
            #self.__dict__[name]=value 也可以
            #self.name=value会陷入死循环
            
    def getArea(self):
        return self.width*self.height

4、描述符

描述符就是将某种特殊类型的类的实例指派给另一个类的属性。

方法描述
__get__(self,instance,owner)用于访问属性,它用于返回属性的值
__set__(self,instance,value)将在属性分配操作中调用,不返回任何内容
__delete__(self,instance)控制删除操作,不返回任何内容
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值