自定义 Python 的“copy”模块如何处理我的对象

发布于 2024-08-04 18:26:33 字数 419 浏览 4 评论 0原文

来自复制文档

类可以使用与控制pickle相同的接口来控制复制。

[...]

为了让类定义自己的复制实现,它可以定义特殊方法 __copy__()__deepcopy__()

那么它是哪一个呢?酸洗时使用的 __setstate__()__getstate__(),还是 __copy__()__deepcopy__()

From the copy documentation:

Classes can use the same interfaces to control copying that they use to control pickling.

[...]

In order for a class to define its own copy implementation, it can define special methods __copy__() and __deepcopy__()

So which one is it? __setstate__() and __getstate__() that are used when pickling, or __copy__() and __deepcopy__()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-小熊_ 2024-08-11 18:26:33

它的工作原理如下:如果一个类定义了 __copy__,则优先用于 copy.copy 目的(同样,__deepcopy__ 优先用于 copy.deepcopy 目的)。如果未定义这些非常具体的特殊方法,则测试与 pickling 和 unpickling 相同的机制(这包括但不限于 __getstate__ 和 __setstate__ ;我在我的书《Python in a Nutshell》(@ilfaraone 仅部分引用)中写了更多相关内容。

It works as follows: if a class defines __copy__, that takes precedence for copy.copy purposes (and similarly __deepcopy__ takes precedence for copy.deepcopy purposes). If these very specific special methods are not defined, then the same mechanisms as for pickling and unpickling are tested (this includes, but is not limited to, __getstate__ and __setstate__; I've written more about this in my book "Python in a Nutshell" (which @ilfaraone quotes only partially).

仙女山的月亮 2024-08-11 18:26:33

__setstate__()__getstate__()

请注意,副本文档说他们可以使用相同的接口,但他们不一定这样做。

请参阅此摘录 来自 Python 简述,或 Python 邮件列表上的此说明

__setstate__() and __getstate__().

Notice that the copy documentation says that they can use the same interface, but they don't necessarily have do so.

See this excerpt from Python in a Nutshell, or this explanation on the Python Mailing List.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文