用法:
class types.GenericAlias(t_origin, t_args)
參數化泛型的類型,例如
list[int]
。t_origin
應該是非參數化的泛型類,例如list
,tuple
或dict
。t_args
應該是參數化t_origin
的類型的tuple
(可能長度為 1):>>> from types import GenericAlias >>> list[int] == GenericAlias(list, (int,)) True >>> dict[str, int] == GenericAlias(dict, (str, int)) True
3.9 版中的新函數。
在 3.9.2 版中更改:這種類型現在可以被子類化。
相關用法
- Python types.SimpleNamespace用法及代碼示例
- Python type()用法及代碼示例
- Python type用法及代碼示例
- Python typing.get_type_hints用法及代碼示例
- Python typing.Concatenate用法及代碼示例
- Python typing.Optional用法及代碼示例
- Python typing.Final用法及代碼示例
- Python typing.TypedDict.__optional_keys__用法及代碼示例
- Python typing.Protocol用法及代碼示例
- Python typing.NoReturn用法及代碼示例
- Python typing.TypedDict.__total__用法及代碼示例
- Python typing.is_typeddict用法及代碼示例
- Python typing.TypeVar用法及代碼示例
- Python typing.AsyncGenerator用法及代碼示例
- Python typing.final用法及代碼示例
- Python typing.ClassVar用法及代碼示例
- Python typing.ParamSpec用法及代碼示例
- Python typing.Literal用法及代碼示例
- Python typing.overload用法及代碼示例
- Python typing.TYPE_CHECKING用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 types.GenericAlias。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。