定義具有相互引用的類型提示的類別時,可能會出現循環依賴錯誤,導致類型提示無效。此錯誤通常表現為 NameError,表示在目前命名空間中找不到類別名稱。
考慮以下程式碼片段:
<code class="python">class Server: def register_client(self, client: Client) pass class Client: def __init__(self, server: Server): server.register_client(self)</code>
在此範例中,Server 類別需要一個Client 物件作為其register_client 方法的參數,而Client 類別需要在其建構函式中存在一個Server 實例。但是,這種循環依賴會導致程式碼失敗並出現 NameError: name 'Client' is not Defined。
此問題的一種解決方案是使用前向引用。透過將 Client 宣告為類型提示中的字串,解釋器可以稍後解決相依性。
<code class="python">class Server: def register_client(self, client: 'Client') pass</code>
或者,Python 3.7 引入了延遲評估註釋。透過在模組開頭新增 future import from __future__ 導入註釋,註釋將儲存為抽象語法樹的字串表示形式。這些註解可以稍後使用typing.get_type_hints()來解析。
<code class="python">from __future__ import annotations class Server: def register_client(self, client: Client) pass</code>
以上是如何解決類型提示中的循環依賴性以實現有效的類型強制?的詳細內容。更多資訊請關注PHP中文網其他相關文章!