Understanding dict.copy() - shallow or deep?(理解 dict.copy() - 浅的还是深的?)
问题描述
在阅读 dict.copy() 的文档时,它说它制作了字典的浅表副本.我正在关注的书(Beazley's Python Reference)也是如此,它说:
While reading up the documentation for dict.copy(), it says that it makes a shallow copy of the dictionary. Same goes for the book I am following (Beazley's Python Reference), which says:
m.copy() 方法使浅包含在 a 中的项目的副本映射对象并将它们放置在新的映射对象.
The m.copy() method makes a shallow copy of the items contained in a mapping object and places them in a new mapping object.
考虑一下:
>>> original = dict(a=1, b=2)
>>> new = original.copy()
>>> new.update({'c': 3})
>>> original
{'a': 1, 'b': 2}
>>> new
{'a': 1, 'c': 3, 'b': 2}
所以我假设这会更新 original 的值(并添加'c':3),因为我正在做一个浅拷贝.就像您为列表做的一样:
So I assumed this would update the value of original (and add 'c': 3) also since I was doing a shallow copy. Like if you do it for a list:
>>> original = [1, 2, 3]
>>> new = original
>>> new.append(4)
>>> new, original
([1, 2, 3, 4], [1, 2, 3, 4])
这按预期工作.
既然都是浅拷贝,为什么 dict.copy() 不能像我预期的那样工作?还是我对浅拷贝和深拷贝的理解有缺陷?
Since both are shallow copies, why is that the dict.copy() doesn't work as I expect it to? Or my understanding of shallow vs deep copying is flawed?
推荐答案
所谓的浅拷贝"是指字典的内容不是按值拷贝,而是创建一个新的引用.
By "shallow copying" it means the content of the dictionary is not copied by value, but just creating a new reference.
>>> a = {1: [1,2,3]}
>>> b = a.copy()
>>> a, b
({1: [1, 2, 3]}, {1: [1, 2, 3]})
>>> a[1].append(4)
>>> a, b
({1: [1, 2, 3, 4]}, {1: [1, 2, 3, 4]})
相比之下,深拷贝将按值复制所有内容.
In contrast, a deep copy will copy all contents by value.
>>> import copy
>>> c = copy.deepcopy(a)
>>> a, c
({1: [1, 2, 3, 4]}, {1: [1, 2, 3, 4]})
>>> a[1].append(5)
>>> a, c
({1: [1, 2, 3, 4, 5]}, {1: [1, 2, 3, 4]})
所以:
b = a:引用赋值,使a和b指向同一个对象.
b = a: Reference assignment, Makeaandbpoints to the same object.
b = a.copy():浅拷贝,a和b会变成两个孤立的对象,但是它们的内容仍然共享相同的参考
b = a.copy(): Shallow copying, a and b will become two isolated objects, but their contents still share the same reference
b = copy.deepcopy(a):深拷贝,a和b的结构和内容完全隔离.
b = copy.deepcopy(a): Deep copying, a and b's structure and content become completely isolated.
这篇关于理解 dict.copy() - 浅的还是深的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:理解 dict.copy() - 浅的还是深的?
基础教程推荐
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
