python里的双下划线函数都是什么意思?
ringa_lee
ringa_lee 2017-04-17 17:37:23
0
4
992
__module__
__new__
__reduce__
__repr__
__reduce_ex__
__getattribute__
ringa_lee
ringa_lee

ringa_lee

全部回覆(4)
刘奇

看這裡

Peter_Zhu

http://rafekettler.com/magicmethods.html

大家讲道理

隱藏屬性,或隱藏方法。

例如

>>> '33'.__hash__()
4038753864587545164
>>> '33'.__len__()==len('33')
True


>>> (3).__pow__(2)
9

>>> int.__pow__(3,2)
9
大家讲道理

簡單的說,就是hook。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板