1

我已经定义了一个Color类,如下所示。由于我需要存储多种颜色及其各自的节点 ID(具有颜色),因此我制作了一个颜色列表来存储它们。但是,每次更改节点颜色时,我不想直接更新列表颜色(另一个函数将决定是否更新),因此我需要在调用决策函数之前将颜色副本存储到 *tmp_colors*,如果结果为 Yes,则使用 *tmp_colors*更新颜色。

我设法制作了新列表 *tmp_colors* 的副本,但 *tmp_colors[0]* 仍然指向colors[0],导致两个列表都更新了。

  1. 如何将颜色 [0]中的类对象复制到 *tmp_colors[0]*?
  2. 如果我稍后要更新颜色 [0],最好的方法是什么?
  3. 有没有比下面的例子更好的设计(定义类和类对象列表)?

class Color:
    __elems__ = "num", "nodelist",

    def __init__(self):
        self.num = 0
        self.num_bad_edge = 0

    def items(self):
        return [
                (field_name, getattr(self, field_name)) 
                 for field_name in self.__elems__]

def funcA():

    nodeCount = 2
    colors = []
    for i in range(0, nodeCount):
        colors.append(Color())

    colors[0].num = 2
    colors[0].nodelist = [10,20]
    colors[1].num = 3
    colors[1].nodelist = [23,33, 43]

    print "colors"
    for i in range(0, nodeCount):
        print colors[i].items()

    tmp_colors = list(colors)
    print "addr of colors:" 
    print id(colors)
    print "addr of tmp_colors:" 
    print id(tmp_colors)    
    print "addr of colors[0]:" 
    print id(colors[0])
    print "addr of tmp_colors[0]:" 
    print id(tmp_colors[0])

    tmp_colors[0].num = 2
    tmp_colors[0].nodelist = [10,21]

    print "\ntmp_colors"
    for i in range(0, nodeCount):
        print tmp_colors[i].items()

    print "\ncolors <<< have been changed"
    for i in range(0, nodeCount):
        print colors[i].items()

结果:

colors
[('num', 2), ('nodelist', [10, 20])]
[('num', 3), ('nodelist', [23, 33, 43])]
addr of colors:
32480840
addr of tmp_colors:
31921032
addr of colors[0]:
32582728
addr of tmp_colors[0]:
32582728                           <<<<<< --- expecting a new addr

tmp_colors
[('num', 2), ('nodelist', [10, 21])]
[('num', 3), ('nodelist', [23, 33, 43])]

colors <<< have been changed
[('num', 2), ('nodelist', [10, 21])]   <<<<<< --- expecting no change [10, 20]
[('num', 3), ('nodelist', [23, 33, 43])]
4

2 回答 2

5

您复制了列表,但没有复制内容,然后您对其进行了更改。您的Color实例也是可变,并且tmp_colors[0]引用相同的实例colors[0]。当然,tmp_colors是副本,但Color实例不是。

用于copy.deepcopy()递归地创建对象的副本:

from copy import deepcopy

tmp_colors = deepcopy(colors)
于 2013-07-16T11:41:20.963 回答
1

您可以使用该copy模块

import copy
tmp_colors = copy.deepcopy(colors)
于 2013-07-16T11:44:59.447 回答