python之有关魔方方法的内容

简介: python之有关魔方方法的内容

魔方方法:

在python的类中,以下划线开头,两个下划线结尾的方法,如常见的:init,str,__del__等,就被称为魔方方法,这些方法在类或对象进行特定的操作时会被自动调用,我们可以使用或重写这些魔方方法,给自定义的类添加各种特殊的功能来满足自己的需求。


常见的魔方方法:

init:

init()方法是我们最常见的魔方方法,可以用此方法定义一个对象的初始化操作。

例如:

class Car:
def __init__(self,Color,WheelNum):
        self.color = Color#初始化操作,不设定值
        self.wheelNum = WheelNum

new:

init()方法很容易被认为是在实例化对象时,调用的第一个方法,但其实不是,当我们实例化一个对象的时候,第一个被调用的方法是__new__(),而后再调用__init__()方法,并把一些参数传给__init__()方法,new()方法才是真正创建了实例化对象,init()方法只是给这个对象进行了初始化操作。


举例:

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color=color
        self.wheelnum=wheelnum
         print(id((self)))
    def __new__(cls, *args, **kwargs):#接收任意数量的位置实参和关键字实参
        print("__new__()方法被调用")
        print("args:",args)
        c=super().__new__(cls)#cls表示当前类
        print(id(c))
        return c#有返回,调用__init__函数
my_car=Car("蓝色",8)
__new__()方法被调用#new函数先被调用
args: ('蓝色', 8)
1955709945024
__init__()方法被调用
1955709945024

new()方法第一个参数必须是cls参数,表示当前类,其他参数是用来直接传递给__init__方法,__new__决定是否要使用该__init__方法,因为__new__可以调用其他类的构造方法或直接返回别的实例对象来作为本类的实例,如果__new__没有返回实例对象,则__init__不会被调用,__new__主要是用于继承一个不可变的类型,例如:元组或者字符串


del:

当一个对象的生命周期结束被彻底销毁的时候被调用,编译器会默认调用__del__方法.

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color=color
        self.wheelnum=wheelnum
    def __del__(self):
        print("__del__()方法被调用")#被调用后,该变量所占用的内存块被释放
my_car=Car("蓝色",8)
print(my_car.color)

__new__和__init__的id值相同,它两相配合才是python中真正的类构造器

__init__()方法被调用
蓝色
__del__()方法被调用

str:

如果要把一个类的实例变成str,就需要实现特殊方法__str__()

举例:

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color=color
        self.wheelnum=wheelnum
    def __str__(self):#将实例转化为字符串
        return (f"我的汽车颜色是{self.color},它有{self.wheelnum}个轮子")
my_car=Car("蓝色",8)
print(my_car)
__init__()方法被调用
我的汽车颜色是蓝色,它有8个轮子

setattr函数和getattr函数

setattr()函数用于设置属性,该属性不一定存在。

def __setattr__(object,key,value):#object---对象,key----字符串,对象属性,value----属

举例:

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color="红色"
        self.wheelnum=8
my_car=Car("蓝色",8)
print("设置属性前:")
print(my_car.color)
print(my_car.wheelnum)
setattr(my_car,"color","白色")#设置对象属性的值
setattr(my_car,"wheelnum",10)#设置对象属性的值
print("设置属性后:")
print(my_car.color)
print(my_car.wheelnum)
__init__()方法被调用
设置属性前:
红色
8
设置属性后:
白色
10

gatattr()函数用于获取属性。

def __getattr__(object,key)#object-----对象,key-----对象属性

举例:

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color="红色"
        self.wheelnum=8
my_car=Car("蓝色",8)
print(getattr(my_car,"color"))#输出对象对应属性的值
__init__()方法被调用
红色

类型转换相关魔方方法:

class Car:
    def __init__(self,color,wheelnum):
        print("__init__()方法被调用")
        self.color="红色"
        self.wheelnum=8
    def __int__(self):#将对应的属性wheelnum的值转化为int类型的结果并返回给__init__()函数
        return self.wheelnum
    def __float__(self):#将对应的属性wheelnum的值转化为float类型的结果并返回给__init__()函数
        return self.wheelnum*1.0
    def __str__(self):#将对应的属性color的值转化为str类型的结果并返回给__init__()函数
        return self.color
    def __bool__(self):#将对应的属性wheelnum判断的结果转化为bool类型的结果并返回给__init__()函数
        return self.wheelnum>5
my_car=Car("蓝色",8)
#强制类型转换
print(int(my_car))
print(float(my_car))
print(str(my_car))
print(bool(my_car))
__init__()方法被调用
8
8.0
红色
True

算数运算符相关的魔方方法:

class Student:
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def __add__(self, other):#进行self.age+other的运算
    #并将self.age+实参的结果返回给__init__()函数
        return self.age+other
    def __sub__(self, other):
        return self.age-other
    def __mul__(self, other):
        return self.age*other
    def __truediv__(self, other):
        return self.age/other
    def __mod__(self, other):
        return self.age%other
    def __pow__(self, power, modulo=None):#平方和运算
        return self.age**power
s=Student("易烊千玺",22)
#算数运算
print(s+1)
print(s-2)
print(s*3)
print(s/4)
print(s%5)
print(s**6)
23
20
66
5.5
2
113379904

比较运算符相关的魔方方法:

class Student:
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def __eq__(self, other):#比较对象的各个属性值是否都相等
        return self.name==other.name and self.age==other.age
    def __lt__(self, other):#比较对象的某一属性之间的大小关系
        return self.age<other.age
    def __le__(self, other):#比较对象的某一属性之间的大小关系
        return self.age<=other.age
student1=Student("易烊千玺",22)
student2=Student("王源",22)
student3=Student("王俊凯",23)
print(student1==student2)
print(student1!=student3)
print(student2==student3)
print(student1>=student2)
print(student1>=student3)
print(student2<=student3)
#比较运算符返回结果均为布尔值(False、True)
False
True
False
True
False
True
相关文章
|
1月前
|
测试技术 API Python
【10月更文挑战第1天】python知识点100篇系列(13)-几种方法让你的电脑一直在工作
【10月更文挑战第1天】 本文介绍了如何通过Python自动操作鼠标或键盘使电脑保持活跃状态,避免自动息屏。提供了三种方法:1) 使用PyAutoGUI,通过安装pip工具并执行`pip install pyautogui`安装,利用`moveRel()`方法定时移动鼠标;2) 使用Pymouse,通过`pip install pyuserinput`安装,采用`move()`方法移动鼠标绝对位置;3) 使用PyKeyboard,同样需安装pyuserinput,模拟键盘操作。文中推荐使用PyAutoGUI,因其功能丰富且文档详尽。
WK
|
23天前
|
Python
Python中format_map()方法
在Python中,`format_map()`方法用于使用字典格式化字符串。它接受一个字典作为参数,用字典中的键值对替换字符串中的占位符。此方法适用于从字典动态获取值的场景,尤其在处理大量替换值时更为清晰和方便。
WK
68 36
|
1月前
|
机器学习/深度学习 数据采集 数据挖掘
11种经典时间序列预测方法:理论、Python实现与应用
本文将总结11种经典的时间序列预测方法,并提供它们在Python中的实现示例。
64 2
11种经典时间序列预测方法:理论、Python实现与应用
|
30天前
|
开发者 Python
Python中的魔法方法与运算符重载
在Python的奇妙世界里,魔法方法(Magic Methods)和运算符重载(Operator Overloading)是两个强大的特性,它们允许开发者以更自然、更直观的方式操作对象。本文将深入探讨这些概念,并通过实例展示如何利用它们来增强代码的可读性和表达力。
|
1月前
|
数据处理 Python
Python 高级技巧:深入解析读取 Excel 文件的多种方法
在数据分析中,从 Excel 文件读取数据是常见需求。本文介绍了使用 Python 的三个库:`pandas`、`openpyxl` 和 `xlrd` 来高效处理 Excel 文件的方法。`pandas` 提供了简洁的接口,而 `openpyxl` 和 `xlrd` 则针对不同版本的 Excel 文件格式提供了详细的数据读取和处理功能。此外,还介绍了如何处理复杂格式(如合并单元格)和进行性能优化(如分块读取)。通过这些技巧,可以轻松应对各种 Excel 数据处理任务。
180 16
|
1月前
|
Python
Python中的push方法详解与实例
Python中的push方法详解与实例
|
1月前
|
存储 Python
python列表操作和方法
python列表操作和方法
30 1
|
1月前
|
存储 索引 Python
反转Python列表的4种方法
反转Python列表的4种方法
|
1月前
|
Python
深入解析 Python 中的对象创建与初始化:__new__ 与 __init__ 方法
深入解析 Python 中的对象创建与初始化:__new__ 与 __init__ 方法
19 1
|
1月前
|
Linux Python
Python获得本机本地ip地址的方法
【10月更文挑战第8天】 socket模块包含了丰富的函数和方法,可以获取主机的ip地址,例如gethostbyname方法可以根据主机名获取ip地址,gethostbyname_ex方法可以获得本机所有ip地址列表,也可以使用netifaces模块获取网卡信息。
39 0