使用 singledispatch 在 Python 中追溯地添加方法

在我们覆盖 7 个 PyPI 库的系列文章中了解更多解决 Python 问题的信息。

在我们覆盖 7 个 PyPI 库的系列文章中了解更多解决 Python 问题的信息。

使用 singledispatch 在 Python 中追溯地添加方法

Python 是当今使用最多流行的编程语言之一,因为:它是开源的,它具有广泛的用途(例如 Web 编程、业务应用、游戏、科学编程等等),它有一个充满活力和专注的社区支持它。这个社区是我们在 Python Package Index(PyPI)中提供如此庞大、多样化的软件包的原因,用以扩展和改进 Python。并解决不可避免的问题。

在本系列中,我们将介绍七个可以帮助你解决常见 Python 问题的 PyPI 库。今天,我们将研究 singledispatch,这是一个能让你追溯地向 Python 库添加方法的库。

singledispatch

想象一下,你有一个有 Circle、Square 等类的“形状”库。

Circle 类有半径、Square 有边、Rectangle 有高和宽。我们的库已经存在,我们不想改变它。

然而,我们想给库添加一个面积计算。如果我们不会和其他人共享这个库,我们只需添加 area 方法,这样我们就能调用 shape.area() 而无需关心是什么形状。

虽然可以进入类并添加一个方法,但这是一个坏主意:没有人希望他们的类会被添加新的方法,程序会因奇怪的方式出错。

相反,functools 中的 singledispatch 函数可以帮助我们。


@singledispatch
def get_area(shape):
raise NotImplementedError("cannot calculate area for unknown shape",
shape)

get_area 函数的“基类”实现会报错。这保证了如果我们出现一个新的形状时,我们会明确地报错而不是返回一个无意义的结果。


@get_area.register(Square)
def _get_area_square(shape):
return shape.side ** 2
@get_area.register(Circle)
def _get_area_circle(shape):
return math.pi * (shape.radius ** 2)

这种方式的好处是如果某人写了一个匹配我们代码的形状,它们可以自己实现 get_area

“`
from areacalculator import getarea

@attr.s(autoattribs=True, frozen=True)
class Ellipse:
horizontal
axis: float
vertical_axis: float

@getarea.register(Ellipse)
def _get
areaellipse(shape):
return math.pi * shape.horizontal
axis * shape.vertical_axis
“`

调用 get_area 很直接。


print(get_area(shape))

这意味着我们可以将大量的 if isintance()/elif isinstance() 的代码以这种方式修改,而无需修改接口。下一次你要修改 if isinstance,你试试 `singledispatch!

在本系列的下一篇文章中,我们将介绍 tox,一个用于自动化 Python 代码测试的工具。

回顾本系列的前几篇文章:


via: https://opensource.com/article/19/5/python-singledispatch

作者:Moshe Zadka 选题:lujun9972 译者:geekpi 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

主题测试文章,只做测试使用。发布者:eason,转转请注明出处:https://aicodev.cn/2019/05/23/%e4%bd%bf%e7%94%a8-singledispatch-%e5%9c%a8-python-%e4%b8%ad%e8%bf%bd%e6%ba%af%e5%9c%b0%e6%b7%bb%e5%8a%a0%e6%96%b9%e6%b3%95/

Like (0)
eason的头像eason
Previous 2019年5月22日
Next 2019年5月23日

相关推荐

发表回复

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

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信