类型提示:解决循环依赖
在 Python 中,当两个类在类型提示中相互引用时,可能会出现循环依赖。这会在尝试实例化其中一个类时导致 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>
尝试实例化 Client 将失败,并出现 NameError: name 'Client' is not定义。
使用前向引用
解决此循环依赖关系的一种方法是在类型提示中使用前向引用。这是通过为尚未定义的类提供字符串名称来完成的:
<code class="python">class Server: def register_client(self, client: 'Client') pass</code>
推迟注释解析
Python 3.7 中引入的另一个解决方案是完全推迟注释的运行时解析。这是通过在模块顶部添加以下导入来实现的:
<code class="python">from __future__ import annotations</code>
随着注释解析的推迟,注释将存储为表达式的抽象语法树 (AST) 的字符串表示形式。您可以使用 Typing.get_type_hints() 来解析这些注释并解析上例中使用的前向引用。
有关更多详细信息,请参阅 PEP 563:推迟对注释的评估。
以上是如何解决Python类型提示中的循环依赖?的详细内容。更多信息请关注PHP中文网其他相关文章!