博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

python3中实现函数的重载

Posted on 2020-07-13 10:54  刘聪刘聪  阅读(905)  评论(0)    收藏  举报

var articleDesc = "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])
1 <class 'int'> int
xx <class 'str'> str
[1] <class 'list'> obj
输出结果为