您好,登錄后才能下訂單哦!
據(jù)說,Python 的對象天生擁有一些神奇的方法,它們總被雙下劃線所包圍,他們是面向?qū)ο蟮?Python 的一切。
他們是可以給你的類增加魔力的特殊方法,如果你的對象實現(xiàn)(重載)了這些方法中的某一個,那么這個方法就會在特殊的情況下被 Python 所調(diào)用,你可以定義自己想要的行為,而這一切都是自動發(fā)生的。
Python 的魔術方法非常強大,然而隨之而來的則是責任。了解正確的方法去使用非常重要!
魔法方法
含義
基本的魔法方法
__new__(cls[, ...])
__del__(self) 析構(gòu)器,當一個實例被銷毀的時候調(diào)用的方法
__call__(self[, args...]) 允許一個類的實例像函數(shù)一樣被調(diào)用:x(a, b) 調(diào)用 x.__call__(a, b)
__len__(self) 定義當被 len() 調(diào)用時的行為
__repr__(self) 定義當被 repr() 調(diào)用時的行為
__str__(self) 定義當被 str() 調(diào)用時的行為 類似于Java中toString方法
__bytes__(self) 定義當被 bytes() 調(diào)用時的行為
__hash__(self) 定義當被 hash() 調(diào)用時的行為
__bool__(self) 定義當被 bool() 調(diào)用時的行為,應該返回 True 或 False
__format__(self, format_spec) 定義當被 format() 調(diào)用時的行為
有關屬性
__getattr__(self, name) 定義當用戶試圖獲取一個不存在的屬性時的行為
__getattribute__(self, name) 定義當該類的屬性被訪問時的行為
__setattr__(self, name, value) 定義當一個屬性被設置時的行為
__delattr__(self, name) 定義當一個屬性被刪除時的行為
__dir__(self) 定義當 dir() 被調(diào)用時的行為
__get__(self, instance, owner) 定義當描述符的值被取得時的行為
__set__(self, instance, value) 定義當描述符的值被改變時的行為
__delete__(self, instance) 定義當描述符的值被刪除時的行為
比較操作符
__lt__(self, other) 定義小于號的行為:x < y 調(diào)用 x.__lt__(y)
__le__(self, other) 定義小于等于號的行為:x <= y 調(diào)用 x.__le__(y)
__eq__(self, other) 定義等于號的行為:x == y 調(diào)用 x.__eq__(y)
__ne__(self, other) 定義不等號的行為:x != y 調(diào)用 x.__ne__(y)
__gt__(self, other) 定義大于號的行為:x > y 調(diào)用 x.__gt__(y)
__ge__(self, other) 定義大于等于號的行為:x >= y 調(diào)用 x.__ge__(y)
算數(shù)運算符
__add__(self, other) 定義加法的行為:+
__sub__(self, other) 定義減法的行為:-
__mul__(self, other) 定義乘法的行為:*
__truediv__(self, other) 定義真除法的行為:/
__floordiv__(self, other) 定義整數(shù)除法的行為://
__mod__(self, other) 定義取模算法的行為:%
__divmod__(self, other) 定義當被 divmod() 調(diào)用時的行為
__pow__(self, other[, modulo]) 定義當被 power() 調(diào)用或 ** 運算時的行為
__lshift__(self, other) 定義按位左移位的行為:<<
__rshift__(self, other) 定義按位右移位的行為:>>
__and__(self, other) 定義按位與操作的行為:&
__xor__(self, other) 定義按位異或操作的行為:^
__or__(self, other) 定義按位或操作的行為:|
反運算
__radd__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rsub__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rmul__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rtruediv__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rfloordiv__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rmod__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rdivmod__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rpow__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rlshift__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rrshift__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__rxor__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
__ror__(self, other) (與上方相同,當左操作數(shù)不支持相應的操作時被調(diào)用)
增量賦值運算
__iadd__(self, other) 定義賦值加法的行為:+=
__isub__(self, other) 定義賦值減法的行為:-=
__imul__(self, other) 定義賦值乘法的行為:*=
__itruediv__(self, other) 定義賦值真除法的行為:/=
__ifloordiv__(self, other) 定義賦值整數(shù)除法的行為://=
__imod__(self, other) 定義賦值取模算法的行為:%=
__ipow__(self, other[, modulo]) 定義賦值冪運算的行為:**=
__ilshift__(self, other) 定義賦值按位左移位的行為:<<=
__irshift__(self, other) 定義賦值按位右移位的行為:>>=
__iand__(self, other) 定義賦值按位與操作的行為:&=
__ixor__(self, other) 定義賦值按位異或操作的行為:^=
__ior__(self, other) 定義賦值按位或操作的行為:|=
一元操作符
__neg__(self) 定義正號的行為:+x
__pos__(self) 定義負號的行為:-x
__abs__(self) 定義當被 abs() 調(diào)用時的行為
__invert__(self) 定義按位求反的行為:~x
類型轉(zhuǎn)換
__complex__(self) 定義當被 complex() 調(diào)用時的行為(需要返回恰當?shù)闹担?/p>
__int__(self) 定義當被 int() 調(diào)用時的行為(需要返回恰當?shù)闹担?/p>
__float__(self) 定義當被 float() 調(diào)用時的行為(需要返回恰當?shù)闹担?/p>
__round__(self[, n]) 定義當被 round() 調(diào)用時的行為(需要返回恰當?shù)闹担?/p>
__index__(self)
上下文管理(with 語句)
__enter__(self)
1. 定義當使用 with 語句時的初始化行為
2. __enter__ 的返回值被 with 語句的目標或者 as 后的名字綁定
__exit__(self, exc_type, exc_value, traceback)
1. 定義當一個代碼塊被執(zhí)行或者終止后上下文管理器應該做什么
2. 一般被用來處理異常,清除工作或者做一些代碼塊執(zhí)行完畢之后的日常工作
容器類型
__len__(self) 定義當被 len() 調(diào)用時的行為(返回容器中元素的個數(shù))
__getitem__(self, key) 定義獲取容器中指定元素的行為,相當于 self[key]
__setitem__(self, key, value) 定義設置容器中指定元素的行為,相當于 self[key] = value
__delitem__(self, key) 定義刪除容器中指定元素的行為,相當于 del self[key]
__iter__(self) 定義當?shù)萜髦械脑氐男袨?/p>
__reversed__(self) 定義當被 reversed() 調(diào)用時的行為
__contains__(self, item) 定義當使用成員測試運算符(in 或 not in)時的行為
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。