Python – typing 模块 —— NewType

Python – typing 模块 —— NewType前言 typing 是在 python3 5 才有的模块前置学习 Python 类型提示 https www cnblogs com poloyy p 15145380 html 常用类型提示 https www cnblog

大家好,欢迎来到IT知识分享网。

前言

typing 是在 python 3.5 才有的模块

前置学习

Python 类型提示:https://www.cnblogs.com/poloyy/p/15145380.html

常用类型提示

https://www.cnblogs.com/poloyy/p/15150315.html

类型别名

https://www.cnblogs.com/poloyy/p/15153883.html 

NewType

可以自定义创一个新类型

  • 主要用于类型检查
  • NewType(name, tp) 返回一个函数,这个函数返回其原本的值
  • 静态类型检查器会将新类型看作是原始类型的一个子类
  • tp 就是原始类型

实际栗子

# NewType from typing import NewType UserId = NewType('UserId', int) def name_by_id(user_id: UserId) -> str: print(user_id) UserId('user') # Fails type check num = UserId(5) # type: int name_by_id(42) # Fails type check name_by_id(UserId(42)) # OK print(type(UserId(5))) # 输出结果 42 42 <class 'int'> 

可以看到 UserId 其实也是 int 类型

类型检查

Python - typing 模块 —— NewType

使用 UserId 类型做算术运算,得到的是 int 类型数据

# 'output' is of type 'int', not 'UserId' output = UserId(23413) + UserId(54341) print(output) print(type(output)) # 输出结果 77754 <class 'int'> 

Callable

https://www.cnblogs.com/poloyy/p/15154008.html

TypeVar 泛型

https://www.cnblogs.com/poloyy/p/15154196.html

Any Type

https://www.cnblogs.com/poloyy/p/15158613.html

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/155622.html

(0)
上一篇 2025-02-17 22:26
下一篇 2025-02-17 22:33

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信