Python 中的方法引用相等性
在 Python 中,方法是在存取時動態建立的唯一物件。此行為與常規函數不同,常規函數無論何時調用,都會被同一物件引用。
要理解這一點,請考慮以下範例:
class What: def meth(self): pass What().meth is What().meth # False
在此程式碼中,儘管引用相同的底層函數,但 meth 方法並不相等。這是因為每個 meth 物件都是在運行時創建的唯一實例。
這種行為的原因在於Python 的屬性查找過程,其中透過呼叫描述符的(function) .__get__ 方法來產生方法物件:
What.__dict__['meth'].__get__(What(), What)
方法物件的動態建立導致以下觀察結果:
同一類別的實例有不同的方法物件:
inst = What() inst.meth is inst.meth # False
What.meth is Other.meth # False
What.meth.__func__ == What.meth.__func__ # True What().meth.__func__ == What().meth.__func__ # True (for same instance) What().meth.__func__ == What(other_instance).meth.__func__ # False (for different instances)
以上是為什麼 Python 方法不相等,即使它們引用相同的底層函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!