13 魔法方法

1.构造和析构

魔法方法的特点:

Paste_Image.png

1.__init__(self[,...])

实例被创建时自动调用,返回值只能是None。

2.__new__(cls[,...])

它的第一个参数是这个类,而其他参数则会传递给__init__方法,所以它第一个被调用的魔法方法,返回一个实例对象,很少去重写它。
当需要修改一个不可变类型时,才去重写它。
例如:

#小写变大写
>>> class CapStr(str):#str是一个不可变类型
    def __new__(cls,s):
        string = s.upper()
        return str.__new__(cls,string)
    
>>> a = CapStr('abc')

再如:

#摄氏度变华氏度
class C2F(float):
    def __new__(cls,x):
        y = x*1.8+32
        return float.__new__(cls,y)

print(C2F(32))

3.__del__(self)

它是一个析构器,当一个类的所有实例对象被del后,才会执行__del__。
注意:并非del x就相当于自动调用x.__del__(),__del__方法是当垃圾回收机制回收这个对象的时候调用的。
例如:

>>> class B:
    def __init__(self):
        print('调用init方法。。。')
    def __del__(self):
        print('调用del方法。。。')

        
>>> b1 = B()
调用init方法。。。
>>> b2 = b1
>>> del b2#没有调用__del__
>>> del b1#所有引用都删除了,就调用__del__方法
调用del方法。。。

2.算术运算

对象是可以进行计算的。

>>> class A:
    pass

>>> type(A)
<class 'type'>
>>> type(int)
<class 'type'>

其实int等数据类型都是类,令a = int('12'),b = int('23'),a和b是可以相加的。
由此引出算术运算。

Paste_Image.png

如:当实例进行加法操作时,调用__add__魔法方法。
例如:

>>> class Nint(int):
    def __add__(self,other):
        return int.__sub__(self,other)
    def __sub__(self,other):
        return int.__add__(self,other)
    
>>> a = Nint(3)
>>> b = Nint(5)

上例实现了加法和减法的对换。

3.反运算魔法方法

说明如图:

Paste_Image.png

例如:

>>> class int(int):
    def __radd__(self,other):
        print('正在运行反运算')
        return int.__add__(self,other)
    
>>> a=int(4)
>>> 1+a
正在运行反运算
5

4.简单定制

1.预备知识

  • __str__()方法
    用于print实例对象时要显示的内容。
>>> class A:
    def __str__(self):
        return 'hello.'
    
>>> a = A()
>>> print(a)
hello.
  • __repr__()方法
    用于直接写实例对象时就显示的内容。
>>> class B:
    def __repr__(self):
        return 'hello!'
    
>>> b = B()
>>> b
hello!

2.

功能要求:

Paste_Image.png

资源需求:

Paste_Image.png

详见课后题,这一节没做。

5.属性访问

介绍4种魔法方法:

Paste_Image.png

应用举例:

>>> 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#当x不存在时,两个方法都调用
__getattribute__
__getattr__
>>> c.x = 1
__setattr__
>>> c.x
__getattribute__
>>> del c.x
__delattr__

注意:__getattr__方法一般不返回,否则会报错。
练习题:

Paste_Image.png
  • 方法1:
class Rectangle:
    def __init__(self,x = 0,y = 0):
        self.x = x
        self.y = y

    def __setattr__(self,name,value):
        print('setattr')
        if name == 'square':
            self.x = value
            self.y = value
        else:
            super().__setattr__(name,value)#【1】

    def getArea(self):
        return self.x * self.y
  • 方法2:
    每一个实例对象都有一个__dict__特殊属性(不是方法),如下:
>>> r2.__dict__
{'x': 12, 'y': 12}

所以可以把上面的中【1】处改为:

self.__dict__[name] = value

注意:不要用下面的写法,会出现死循环。

self.name = value

思考题:编写一个Counter类,用于实时检测对象有多少个属性。

class Counter:
    def __init__(self):
        super().__setattr__('counter',0)
        
    def __setattr__(self,name,value):
        print('__setattr__')
        super().__setattr__('counter',self.counter + 1)
        super().__setattr__(name,value)

    def __delattr__(self,name):
        print('__delattr__')
        super().__setattr__('counter',self.counter - 1)
        super().__delattr__(name)

6.描述符

什么是描述符?

Paste_Image.png

例如:

>>> class MyDecriptor:
    def __get__(self,instance,owner):
        print('getting...')
        print(self)
        print(instance)
        print(owner)
    def __set__(self,instance,value):
        print('setting...')
        print(self)
        print(instance)
        print(value)
    def __delete__(self,instance):
        print('delete...')
        print(self)
        print(instance)

>>> class Test:
    x = MyDecriptor()

>>> t = Test()
>>> t.x
getting...
<__main__.MyDecriptor object at 0x02F27770>
<__main__.Test object at 0x02F277D0>
<class '__main__.Test'>
>>> t.x = 1
setting...
<__main__.MyDecriptor object at 0x02F27770>
<__main__.Test object at 0x02F277D0>
1
>>> del t.x
delete...
<__main__.MyDecriptor object at 0x02F27770>
<__main__.Test object at 0x02F277D0>

7.定制容器

1.协议

Paste_Image.png

2.实战

编写一个不可改变的自定义列表,要求记录列表中每个元素被访问的次数。

class List:
    def __init__(self,*args):
        self.value = [x for x in args]
        self.count = {}.fromkeys(range(len(self.value)),0)

    def __len__(self):
        return len(self.value)

    def __getitem__(self,key):
        self.count[key] += 1
        return self.value[key]
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,637评论 18 139
  • 1、什么叫魔法方法? 魔法方法:Python解释器自动给出默认的,是可以给你的类增加魔力的特殊方法。如果你的对象实...
    Bling_ll阅读 1,043评论 0 2
  • 学习一下几个内容 __getattr__和__setattr__方法,把未定义的属性获取和所有的属性赋值指向通用的...
    低吟浅唱1990阅读 404评论 0 0
  • SwiftDay011.MySwiftimport UIKitprintln("Hello Swift!")var...
    smile丽语阅读 3,829评论 0 6
  • 20岁快到了。说说恋爱这方面的东西。在大学 也没什么不好意思的,最多删掉就对了,其实也没有别人在乎你的。 我觉得自...
    S的随便用账号阅读 1,159评论 0 50