python 操作符重载

本文详细介绍了Python中操作符重载的原理和使用,包括__new__, __init__, __cmp__, __pos__, __neg__, __invert__, __index__, __nonzero__, __getattr__, __setattr__, __delattr__, __getattribute__, __getitem__, __setitem__, __delitem__, __iter__, __contains__, __concat__, __call__, __enter__, __exit__, __getstate__和__setstate__等魔术方法。这些方法在创建实例、比较、索引、布尔判断、属性访问、序列化等方面起到关键作用,使得自定义类型能够支持多种内置操作。" 117427299,8753399,迭代依赖类型的序列:FOREACH 操作详解,"['C++编程', '算法', '数据结构', '编程技巧', '泛型编程']
摘要由CSDN通过智能技术生成
In [10]: class hi:
   ....:     def __lt__(self,other):
   ....:         print other
   ....:         
   ....:         

In [11]: x = hi()

In [12]: x < "s"
s


魔术方法、调用方式、解释:

  • __new__(cls [,...])

instance = MyClass(arg1, arg2)
__new__ 在创建实例的时候被调用

  • __init__(self [,...])

instance = MyClass(arg1, arg2)
__init__ 在创建实例的时候被调用

  • __cmp__(self, other)

self == other, self > other, 等。
在比较的时候调用

  • __pos__(self)

+self
一元加运算符

  • __neg__(self)

-self
一元减运算符

  • __invert__(self)

~self
取反运算符

  • __index__(self)

x[self]
对象被作为索引使用的时候

  • __nonzero__(self)

bool(self)
对象的布尔值

  • __getattr__(self, name)

self.name # name 不存在
访问一个不存在的属性时

  • __setattr__(self, name, val)

self.name = val
对一个属性赋值时

  • __delattr__(self, name)

del self.name
删除一个属性时

  • __getattribute__(self, name)

self.name
访问任何属性时

  • __getitem__(self, key)

self[key]
使用索引访问元素时

  • __setitem__(self, key, val)

self[key] = val
对某个索引值赋值时

  • __delitem__(self, key)

del self[key]
删除某个索引值时

  • __iter__(self)

for x in self
迭代时

  • __contains__(self, value)

value in self, value not in self
使用 in 操作测试关系时

  • __concat__(self, value)

self + other
连接两个对象时

  • __call__(self [,...])

self(args)
“调用”对象时

  • __enter__(self)

with self as x:
with 语句环境管理

  • __exit__(self, exc, val, trace)

with self as x:
with 语句环境管理

  • __getstate__(self)

pickle.dump(pkl_file, self)
序列化

  • __setstate__(self)

data = pickle.load(pkl_file)
序列化


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值