在Python中,如何将一个方法的返回类型作为另一个方法的类型提示?

huangapple go评论96阅读模式
英文:

Typehint method as returning return type of other method in python?

问题

I have a base class:

  1. from abc import abstractmethod
  2. class Thing:
  3. @abstractmethod
  4. def _process(self):
  5. ...
  6. def process(self, x: int):
  7. self.pre_process(x)
  8. return self._process()

How do I typehint process as returning the return type of _process? My first thought was something like:

  1. from abc import abstractmethod
  2. from typing import TypeVar
  3. class Thing:
  4. T = TypeVar("T")
  5. @abstractmethod
  6. def _process(self) -> T:
  7. ...
  8. def process(self, x: int) -> T:
  9. ...

But mypy 1.3.0 complains quite rightly that T is only present once in the function signature:

  1. > mypy /tmp/t.py
  2. ...
  3. error: A function returning TypeVar should receive at least one argument containing the same TypeVar
  4. ...
英文:

I have a base class:

  1. from abc import abstractmethod
  2. class Thing:
  3. @abstractmethod
  4. def _process(self):
  5. ...
  6. def process(self, x: int):
  7. self.pre_process(x)
  8. return self._process()

How do I typehint process as returning the return type of _process? My first thought was something like:

  1. from abc import abstractmethod
  2. from typing import TypeVar
  3. class Thing:
  4. T = TypeVar("T")
  5. @abstractmethod
  6. def _process(self) -> T:
  7. ...
  8. def process(self, x: int) -> T:
  9. ...

But mypy 1.3.0 complains quite rightly that T is only present once in the function signature:

  1. > mypy /tmp/t.py
  2. ...
  3. error: A function returning TypeVar should receive at least one argument containing the same TypeVar
  4. ...

答案1

得分: 3

You can make Thing inherit Generic[T].

  1. from typing import TypeVar
  2. from typing import Generic
  3. from abc import abstractmethod
  4. T = TypeVar("T")
  5. class Thing(Generic[T]):
  6. @abstractmethod
  7. def _process(self) -> T:
  8. ...
  9. def process(self, x: int) -> T:
  10. return self._process()
  1. > mypy /tmp/t.py
  2. Success: no issues found in 1 source file

Now you can inherit from Thing like this:

  1. class A(Thing[list]):
  2. def _process(self) -> list:
  3. return []
英文:

You can make Thing inherit Generic[T].

  1. from typing import TypeVar
  2. from typing import Generic
  3. from abc import abstractmethod
  4. T = TypeVar("T")
  5. class Thing(Generic[T]):
  6. @abstractmethod
  7. def _process(self) -> T:
  8. ...
  9. def process(self, x: int) -> T:
  10. return self._process()
  1. > mypy /tmp/t.py
  2. Success: no issues found in 1 source file

Now you can inherit from Thing like this:

  1. class A(Thing[list]):
  2. def _process(self) -> list:
  3. return []

huangapple
  • 本文由 发表于 2023年6月12日 21:00:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/76456918.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定