Python基础入门013_Python的魔法方法

魔法方法总是被双下划线包围,例如__init__。

魔法方法的第一个参数应为cls(类方法) 或者self(实例方法)。

cls:代表一个类的名称

self:代表一个实例对象的名称

1.基本的魔法方法

__init__(self[, ...]) 构造器,当一个实例被创建的时候调用的初始化方法

class Rectangle:
    def __init__(self, x, y):
        self.x = x
        self.y = y

    def getPeri(self):
        return (self.x + self.y) * 2

    def getArea(self):
        return self.x * self.y

rect = Rectangle(4, 5)
print(rect.getPeri())  # 18
print(rect.getArea())  # 20

2.__new__

__new__(cls[, ...]) 在一个对象实例化的时候所调用的第一个方法,在调用__init__初始化前,先调用__new__。

__new__至少要有一个参数cls,代表要实例化的类,此参数在实例化时由 Python 解释器自动提供,后面的参数直接传递给__init__。

__new__对当前类进行了实例化,并将实例返回,传给__init__的self。但是,执行了__new__,并不一定会进入__init__,只有__new__返回了,当前类cls的实例,当前类的__init__才会进入。

class A(object):
    def __init__(self, value):
        print("into A __init__")
        self.value = value

    def __new__(cls, *args, **kwargs):
        print("into A __new__")
        print(cls)
        return object.__new__(cls)

class B(A):
    def __init__(self, value):
        print("into B __init__")
        self.value = value

    def __new__(cls, *args, **kwargs):
        print("into B __new__")
        print(cls)
        return super().__new__(cls, *args, **kwargs)

b = B(10)

# 结果:
# into B __new__
# <class '__main__.B'>
# into A __new__
# <class '__main__.B'>
# into B __init__

class A(object):
    def __init__(self, value):
        print("into A __init__")
        self.value = value

    def __new__(cls, *args, **kwargs):
        print("into A __new__")
        print(cls)
        return object.__new__(cls)

class B(A):
    def __init__(self, value):
        print("into B __init__")
        self.value = value

    def __new__(cls, *args, **kwargs):
        print("into B __new__")
        print(cls)
        return super().__new__(A, *args, **kwargs)  # 改动了cls变为A

b = B(10)

# 结果:
# into B __new__
# <class '__main__.B'>
# into A __new__
# <class '__main__.A'>

注:若__new__没有正确返回当前类cls的实例,那__init__是不会被调用的,即使是父类的实例也不行,将没有__init__被调用。

__new__方法主要是当你继承一些不可变的 class 时(比如int, str, tuple), 提供给你一个自定义这些类的实例化过程的途径。

class CapStr(str):
    def __new__(cls, string):
        string = string.upper()
        return str.__new__(cls, string)

a = CapStr("i love lsgogroup")
print(a)  # I LOVE LSGOGROUP

3.__del__

__del__(self) 析构器,当一个对象将要被系统回收之时调用的方法。

Python 采用自动引用计数(ARC)方式来回收对象所占用的空间,当程序中有一个变量引用该 Python 对象时,Python 会自动保证该对象引用计数为 1;当程序中有两个变量引用该 Python 对象时,Python 会自动保证该对象引用计数为 2,依此类推,如果一个对象的引用计数变成了 0,则说明程序中不再有变量引用该对象,表明程序不再需要该对象,因此 Python 就会回收该对象。

大部分时候,Python 的 ARC 都能准确、高效地回收系统中的每个对象。但如果系统中出现循环引用的情况,比如对象 a 持有一个实例变量引用对象 b,而对象 b 又持有一个实例变量引用对象 a,此时两个对象的引用计数都是 1,而实际上程序已经不再有变量引用它们,系统应该回收它们,此时 Python 的垃圾回收器就可能没那么快,要等专门的循环垃圾回收器(Cyclic Garbage Collector)来检测并回收这种引用循环。

class C(object):
    def __init__(self):
        print('into C __init__')

    def __del__(self):
        print('into C __del__')

c1 = C()
# into C __init__
c2 = c1
c3 = c2
del c3
del c2
del c1
# into C __del__

4.__str__与__repr__

__str__(self):

当你打印一个对象的时候,触发__str__

当你使用%s格式化的时候,触发__str__

str强转数据类型的时候,触发__str__

__repr__(self):

repr是str的备胎

有__str__的时候执行__str__,没有实现__str__的时候,执行__repr__

repr(obj)内置函数对应的结果是__repr__的返回值

当你使用%r格式化的时候 触发__repr__

class Cat:
    """定义一个猫类"""

    def __init__(self, new_name, new_age):
        """在创建完对象之后 会自动调用, 它完成对象的初始化的功能"""
        self.name = new_name
        self.age = new_age

    def __str__(self):
        """返回一个对象的描述信息"""
        return "名字是:%s , 年龄是:%d" % (self.name, self.age)
        
    def __repr__(self):
        """返回一个对象的描述信息"""
        return "Cat:(%s,%d)" % (self.name, self.age)

    def eat(self):
        print("%s在吃鱼...." % self.name)

    def drink(self):
        print("%s在喝可乐..." % self.name)

    def introduce(self):
        print("名字是:%s, 年龄是:%d" % (self.name, self.age))

# 创建了一个对象
tom = Cat("汤姆", 30)
print(tom)  # 名字是:汤姆 , 年龄是:30
print(str(tom)) # 名字是:汤姆 , 年龄是:30
print(repr(tom))  # Cat:(汤姆,30)
tom.eat()  # 汤姆在吃鱼....
tom.introduce()  # 名字是:汤姆, 年龄是:30

5.算数运算符

__add__(self, other)定义加法的行为:+

__sub__(self, other)定义减法的行为:-

class MyClass:

    def __init__(self, height, weight):
        self.height = height
        self.weight = weight

    # 两个对象的长相加,宽不变.返回一个新的类
    def __add__(self, others):
        return MyClass(self.height + others.height, self.weight + others.weight)

    # 两个对象的宽相减,长不变.返回一个新的类
    def __sub__(self, others):
        return MyClass(self.height - others.height, self.weight - others.weight)

    # 说一下自己的参数
    def intro(self):
        print("高为", self.height, " 重为", self.weight)

def main():
    a = MyClass(height=10, weight=5)
    a.intro()

    b = MyClass(height=20, weight=10)
    b.intro()

    c = b - a
    c.intro()

    d = a + b
    d.intro()

if __name__ == '__main__':
    main()

# 高为 10  重为 5
# 高为 20  重为 10
# 高为 10  重为 5
# 高为 30  重为 15

__mul__(self, other)定义乘法的行为:*

__truediv__(self, other)定义真除法的行为:/

__floordiv__(self, other)定义整数除法的行为://

__mod__(self, other) 定义取模算法的行为:%

__divmod__(self, other)定义当被 divmod() 调用时的行为

divmod(a, b)把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。

print(divmod(7, 2))  # (3, 1)
print(divmod(8, 2))  # (4, 0)

__pow__(self, other[, module])定义当被 power() 调用或 ** 运算时的行为

__lshift__(self, other)定义按位左移位的行为:<<

__rshift__(self, other)定义按位右移位的行为:>>

__and__(self, other)定义按位与操作的行为:&

__xor__(self, other)定义按位异或操作的行为:^

__or__(self, other)定义按位或操作的行为:|

6.反算术运算符

__radd__(self, other)定义加法的行为:+

__rsub__(self, other)定义减法的行为:-

__rmul__(self, other)定义乘法的行为:*

__rtruediv__(self, other)定义真除法的行为:/

__rfloordiv__(self, other)定义整数除法的行为://

__rmod__(self, other) 定义取模算法的行为:%

__rdivmod__(self, other)定义当被 divmod() 调用时的行为

__rpow__(self, other[, module])定义当被 power() 调用或 ** 运算时的行为

__rlshift__(self, other)定义按位左移位的行为:<<

__rrshift__(self, other)定义按位右移位的行为:>>

__rand__(self, other)定义按位与操作的行为:&

__rxor__(self, other)定义按位异或操作的行为:^

__ror__(self, other)定义按位或操作的行为:|

class Nint(int):
    def __radd__(self, other):
        return int.__sub__(other, self) # 注意 self 在后面

a = Nint(5)
b = Nint(3)
print(a + b)  # 8
print(1 + b)  # -2

7.增量赋值运算符

__iadd__(self, other)定义赋值加法的行为:+=

__isub__(self, other)定义赋值减法的行为:-=

__imul__(self, other)定义赋值乘法的行为:*=

__itruediv__(self, other)定义赋值真除法的行为:/=

__ifloordiv__(self, other)定义赋值整数除法的行为://=

__imod__(self, other)定义赋值取模算法的行为:%=

__ipow__(self, other[, modulo])定义赋值幂运算的行为:**=

__ilshift__(self, other)定义赋值按位左移位的行为:<<=

__irshift__(self, other)定义赋值按位右移位的行为:>>=

__iand__(self, other)定义赋值按位与操作的行为:&=

__ixor__(self, other)定义赋值按位异或操作的行为:^=

__ior__(self, other)定义赋值按位或操作的行为:|=

8.一元运算符

__neg__(self)定义正号的行为:+x

__pos__(self)定义负号的行为:-x

__abs__(self)定义当被abs()调用时的行为

__invert__(self)定义按位求反的行为:~x

9.属性访问

__getattr__(self, name): 定义当用户试图获取一个不存在的属性时的行为。

__getattribute__(self, name):定义当该类的属性被访问时的行为(先调用该方法,查看是否存在该属性,若不存在,接着去调用__getattr__)。

__setattr__(self, name, value):定义当一个属性被设置时的行为。

__delattr__(self, name):定义当一个属性被删除时的行为。

10.描述符

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

__get__(self, instance, owner)用于访问属性,它返回属性的值。

__set__(self, instance, value)将在属性分配操作中调用,不返回任何内容。

__del__(self, instance)控制删除操作,不返回任何内容。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值