Python 中使用类型提示来指示变量的预期类型或函数的返回值。它们提供了一种记录代码预期行为的方法,并可以帮助及早捕获错误。
问题陈述:
您在 Python 3 中有以下代码:
class Position: def __init__(self, x: int, y: int): self.x = x self.y = y def __add__(self, other: Position) -> Position: return Position(self.x + other.x, self.y + other.y)
但是,您的编辑器 (PyCharm) 会标记一个错误,表明在类型提示中对 Position 的引用__add__ 无法解析。这就提出了一个问题:如何指定返回类型应该是 Position 类型?
解决方案:
在 Python 中,类型提示主要有三种方法具有其封闭类类型的方法,具体取决于您使用的 Python 版本:
Python 3.11 :
from typing import Self class Position: def __add__(self, other: Self) -> Self: ...
带有 from __future__ 导入注释的 Python 3.7:
from __future__ import annotations class Position: def __add__(self, other: Position) -> Position: ...
Python 3.6 和早期:
class Position: def __add__(self, other: 'Position') -> 'Position': ...
说明:
预编译要求:
在 3.7 之前的 Python 版本中,类型提示中使用字符串需要定义所引用的类在类型注释中使用之前。否则,您将遇到 NameError。
注意事项:
请记住,类型提示是可选的,但它们可以显着增强代码的可读性、错误检查和可维护性。
以上是如何在 Python 中使用封闭类类型来类型提示方法?的详细内容。更多信息请关注PHP中文网其他相关文章!