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