PHP前端开发

Python 类如何添加准确的类型提示?

百变鹏仔 4天前 #Python
文章标签 准确

如何给 python 类添加准确的类型提示

在 python 中,我们可以使用 type 为类添加类型提示,但它过于宽泛。例如,下面代码中 myclass 类的 cls 参数可以接受任何类型:

from loguru import loggerclass myclass:    def __init__(self, name: str, data: dict[str, int | str]) -> none:        passdef func(cls: type):    passfunc(myclass)

为了解决这个问题,我们可以使用 typing 模块中的 type 来指定一个更准确的类型提示。修改后的代码如下:

from typing import Typedef func(cls: Type[MyClass]):    pass

现在,cls 参数将准确地指明它应该是一个 myclass 类的类型。这可以防止将其他类型错误地传给 func 函数。

立即学习“Python免费学习笔记(深入)”;