python中實現函式過載
python中實現函式過載
函式過載指對一個同名的函式,可以傳不同型別的引數,然後進行不同的操作。python預設不支援函式過載,因為下邊的同名函式會覆蓋上邊的函式,但是我們可以藉助functools中singledispatch實現python中的函式過載
示例:
from functools import singledispatch
class abs:
def type(self,args):
pass
class Person(abs):
@singledispatch
def type(self,args):
super().type("",args)
print("我可以接受%s型別的引數%s"%(type(args),args))
@type.register(str)
def _(text):
print("str",text)
@type.register(tuple)
def _(text):
print("tuple", text)
@type.register(list)
@type.register(dict)
def _(text):
print("list or dict", text)
Person.type("safly")
Person.type((1,2,3))
Person.type([1,2,3])
Person.type({"a":1})
Person.type(Person,True)
相關文章
- 在 Python 中實現函式過載Python函式
- 如何在Python中實現函式過載Python函式
- python3中實現函式的過載Python函式
- PHP中實現函式過載PHP函式
- PHP中實現函式過載薦PHP函式
- js實現函式過載JS函式
- javascript函式過載的實現JavaScript函式
- javascript如何實現函式過載JavaScript函式
- 為什麼 Python 沒有函式過載?如何用裝飾器實現函式過載?Python函式
- c語言中通過函式指標實現函式過載C語言函式指標
- javascript模擬實現函式過載JavaScript函式
- Python 函式如何過載?Python函式
- Python 類,函式過載Python函式
- 使用條件型別實現TypeScript中的函式過載型別TypeScript函式
- 美麗的閉包,在js中實現函式過載JS函式
- python函式過載是什麼?Python函式
- 關於Python中函式過載問題的思考(原創)Python函式
- TypeScript 函式過載TypeScript函式
- JavaScript函式過載JavaScript函式
- 函式模板過載函式
- 學會TypeScript中函式過載寫法TypeScript函式
- 關於python建構函式的過載Python函式
- 為什麼 Python 不支援函式過載?Python函式
- C/C++—— C++中函式重寫和函式過載C++函式
- 實現c中memcpy函式memcpy函式
- C++ 函式過載,函式模板和函式模板過載,選擇哪一個?C++函式
- 過載的奧義之函式過載函式
- C++函式過載C++函式
- 02-函式過載函式
- Python物件型別判斷與函式過載Python物件型別函式
- JavaScript中的函式過載(Function overloading)JavaScript函式Function
- 118 C++中函式的過載C++函式
- 實現C中的strcpy函式函式
- 函式過載與函式模板的區別函式
- (函式)實現strstr函式函式
- Lua中呼叫ref和out修飾引數的函式/過載函式函式
- C++ 過載運算子和過載函式C++函式
- 如何實現JS中的過載JS