上下文管理器的重写以计算术运算对应的魔术方法
Posted 666666pingzi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上下文管理器的重写以计算术运算对应的魔术方法相关的知识,希望对你有一定的参考价值。
一、上下文管理器
概念:上下文管理器是一个Python对象,为操作提供了额外的上下文信息,这种额外的信息,在
使用with语句初始化上下文,以及完成with 块中的所有代码是,采用可调用的形式。
实现一个上下文管理器需要实现两个方法:
1. object._enter_(self)
输入与此对象相关的运行时上下文。如果存在的话,with语句将绑定该方法的返回值到该语句的as字句中指
定的目标。
2. object._exit_(self,exc_type,exc_val,exc_tb)
exc_type:异常类型
exc_val :异常值
exc_tb :异常回溯追踪
退出于此对象相关的运行时上下文。
例子:
class MyOpen:
def __init__(self, name, method, encoding = "utf8"):
self.name = name
self.method = method
self.encoding = encoding
def __enter__(self,):
self.f = open(self.name, self.method, encoding= self.encoding)
return self.f
def __exit__(self, exc_type, exc_val, exc_tb):
return self.f.close()
with MyOpen("222.txt","w") as f:
f.write("你好")
二 、算术运算符对应的魔术方法
__add__(self, other) 加法
__sub__(self, other) 减法
__add__(self, other) 乘法
__truediv__(self, other) 真除法
__floordiv__(self, other) 整数除法
__mod__(self, other) 取余运算
例子:
class Test:
def __init__(self,data):
self.data = data
def __add__(self, other):
return self.data + other.data
def __mul__(self, other):
return self.data * other.data
a = Test(10)
b = Test(20)
print(a*b)
以上是关于上下文管理器的重写以计算术运算对应的魔术方法的主要内容,如果未能解决你的问题,请参考以下文章