濮阳杆衣贸易有限公司

主頁 > 知識庫 > Python 中的單分派泛函數(shù)你真的了解嗎

Python 中的單分派泛函數(shù)你真的了解嗎

熱門標簽:梅州外呼業(yè)務(wù)系統(tǒng) 大連crm外呼系統(tǒng) 無錫客服外呼系統(tǒng)一般多少錢 洪澤縣地圖標注 百度地圖標注位置怎么修改 高德地圖標注是免費的嗎 地圖標注視頻廣告 老人電話機器人 北京電信外呼系統(tǒng)靠譜嗎

泛型,如果你學過Java ,應該對它不陌生吧。但你可能不知道在 Python 中(3.4+ ),也可以實現(xiàn)簡單的泛型函數(shù)。

在Python中只能實現(xiàn)基于單個(第一個)參數(shù)的數(shù)據(jù)類型來選擇具體的實現(xiàn)方式,官方名稱 是 single-dispatch。你或許聽不懂,說簡單點,就是可以實現(xiàn)第一個參數(shù)的數(shù)據(jù)類型不同,其調(diào)用的函數(shù)也就不同。

singledispatch 是 PEP443 中引入的,如果你對此有興趣,PEP443 應該是最好的學習文檔:

https://www.python.org/dev/peps/pep-0443/

A generic function is composed of multiple functions implementing the same operation for different types. Which implementation should be used during a call is determined by the dispatch algorithm. When the implementation is chosen based on the type of a single argument, this is known as single dispatch.

它使用方法極其簡單,只要被singledispatch 裝飾的函數(shù),就是一個單分派的(single-dispatch )的泛函數(shù)(generic functions)。

單分派:根據(jù)一個參數(shù)的類型,以不同方式執(zhí)行相同的操作的行為。
多分派:可根據(jù)多個參數(shù)的類型選擇專門的函數(shù)的行為。

泛函數(shù):多個函數(shù)綁在一起組合成一個泛函數(shù)。

這邊舉個簡單的例子,介紹一下使用方法

from functools import singledispatch

@singledispatch
def age(obj):
    print('請傳入合法類型的參數(shù)!')

@age.register(int)
def _(age):
    print('我已經(jīng){}歲了。'.format(age))

@age.register(str)
def _(age):
    print('I am {} years old.'.format(age))


age(23)  # int
age('twenty three')  # str
age(['23'])  # list

執(zhí)行結(jié)果

我已經(jīng)23歲了。
I am twenty three years old.
請傳入合法類型的參數(shù)!

說起泛型,其實在 Python 本身的一些內(nèi)建函數(shù)中并不少見,比如 len() , iter()copy.copy() ,pprint()

你可能會問,它有什么用呢?實際上真沒什么用,你不用它或者不認識它也完全不影響你編碼。

我這里舉個例子,你可以感受一下。

大家都知道,Python 中有許許多的數(shù)據(jù)類型,比如 str,list, dict, tuple 等,不同數(shù)據(jù)類型的拼接方式各不相同,所以我這里我寫了一個通用的函數(shù),可以根據(jù)對應的數(shù)據(jù)類型對選擇對應的拼接方式拼接,而且不同數(shù)據(jù)類型我還應該提示無法拼接。以下是簡單的實現(xiàn)。

def check_type(func):
    def wrapper(*args):
        arg1, arg2 = args[:2]
        if type(arg1) != type(arg2):
            return '【錯誤】:參數(shù)類型不同,無法拼接!!'
        return func(*args)
    return wrapper


@singledispatch
def add(obj, new_obj):
    raise TypeError

@add.register(str)
@check_type
def _(obj, new_obj):
    obj += new_obj
    return obj


@add.register(list)
@check_type
def _(obj, new_obj):
    obj.extend(new_obj)
    return obj

@add.register(dict)
@check_type
def _(obj, new_obj):
    obj.update(new_obj)
    return obj

@add.register(tuple)
@check_type
def _(obj, new_obj):
    return (*obj, *new_obj)

print(add('hello',', world'))
print(add([1,2,3], [4,5,6]))
print(add({'name': 'wangbm'}, {'age':25}))
print(add(('apple', 'huawei'), ('vivo', 'oppo')))

# list 和 字符串 無法拼接
print(add([1,2,3], '4,5,6'))

輸出結(jié)果如下

hello, world
[1, 2, 3, 4, 5, 6]
{'name': 'wangbm', 'age': 25}
('apple', 'huawei', 'vivo', 'oppo')
【錯誤】:參數(shù)類型不同,無法拼接!!

如果不使用singledispatch 的話,你可能會寫出這樣的代碼。

def check_type(func):
    def wrapper(*args):
        arg1, arg2 = args[:2]
        if type(arg1) != type(arg2):
            return '【錯誤】:參數(shù)類型不同,無法拼接!!'
        return func(*args)
    return wrapper

@check_type
def add(obj, new_obj):
    if isinstance(obj, str) :
        obj += new_obj
        return obj

    if isinstance(obj, list) :
        obj.extend(new_obj)
        return obj

    if isinstance(obj, dict) :
        obj.update(new_obj)
        return obj

    if isinstance(obj, tuple) :
        return (*obj, *new_obj)

print(add('hello',', world'))
print(add([1,2,3], [4,5,6]))
print(add({'name': 'wangbm'}, {'age':25}))
print(add(('apple', 'huawei'), ('vivo', 'oppo')))

# list 和 字符串 無法拼接
print(add([1,2,3], '4,5,6'))

輸出如下

hello, world
[1, 2, 3, 4, 5, 6]
{'name': 'wangbm', 'age': 25}
('apple', 'huawei', 'vivo', 'oppo')
【錯誤】:參數(shù)類型不同,無法拼接!!

以上是我個人的一些理解,如有誤解誤傳,還請你后臺留言幫忙指正!

以上就是Python 中的單分派泛函數(shù)你真的了解嗎的詳細內(nèi)容,更多關(guān)于Python單分派泛函數(shù)的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • Python中的imread()函數(shù)用法說明
  • 聊聊Python pandas 中l(wèi)oc函數(shù)的使用,及跟iloc的區(qū)別說明

標簽:清遠 泉州 吉林 岳陽 怒江 長春 洛陽 安慶

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Python 中的單分派泛函數(shù)你真的了解嗎》,本文關(guān)鍵詞  Python,中的,單分派,單,分派,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python 中的單分派泛函數(shù)你真的了解嗎》相關(guān)的同類信息!
  • 本頁收集關(guān)于Python 中的單分派泛函數(shù)你真的了解嗎的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    甘南县| 太谷县| 沅江市| 杨浦区| 昌宁县| 大化| 普宁市| 旬阳县| 新丰县| 马尔康县| 龙川县| 吉隆县| 萍乡市| 锦屏县| 虎林市| 互助| 巴青县| 仙桃市| 新河县| 海安县| 海门市| 玛曲县| 建昌县| 夏津县| 个旧市| 吴旗县| 通道| 城市| 崇文区| 乌兰浩特市| 江口县| 西藏| 茌平县| 洪泽县| 潼关县| 抚远县| 鄂伦春自治旗| 孟村| 丹棱县| 梁山县| 平安县|