理解 dict.copy() - 浅的还是深的?

Understanding dict.copy() - shallow or deep?(理解 dict.copy() - 浅的还是深的?)
本文介绍了理解 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]})

所以:

  1. b = a:引用赋值,使ab指向同一个对象.

  1. b = a: Reference assignment, Make a and b points to the same object.

b = a.copy():浅拷贝,ab会变成两个孤立的对象,但是它们的内容仍然共享相同的参考

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):深拷贝,ab的结构和内容完全隔离.

b = copy.deepcopy(a): Deep copying, a and b's structure and content become completely isolated.

这篇关于理解 dict.copy() - 浅的还是深的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)