发布时间:2019-07-29 10:29:05编辑:auto阅读(1985)
python中是不支持函数重载的,但在python3中提供了这么一个装饰器functools.singledispatch,它叫做单分派泛函数,可以通过它来完成python中函数的重载,让同一个函数支持不同的函数类型,它提供的目的也正是为了解决函数重载的问题。
看下面的例子,应该知道怎么去使用它完成函数的重载。
from functools import singledispatch
@singledispatch
def show(obj):
print (obj, type(obj), "obj")
@show.register(str)
def _(text):
print (text, type(text), "str")
@show.register(int)
def _(n):
print (n, type(n), "int")
show(1)
show("xx")
show([1])12345678910111213141516
结果:
1 <class 'int'> int
xx <class 'str'> str
[1] <class 'list'> obj
本文来自 guoqianqian5812 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/guoqianqian5812/article/details/75194118?utm_source=copy
上一篇: 看代码学习python基础
下一篇: 笔试题-python实现快排
48102
46789
37711
35037
29576
26237
25166
20203
19841
18315
5988°
6672°
6164°
6153°
7264°
6103°
6212°
6684°
6649°
8040°