gpt4 book ai didi

python - 如何在Python中选择性地深复制?

转载 作者:行者123 更新时间:2023-12-01 00:52:16 25 4
gpt4 key购买 nike

我有多个 python 类。其中一个类(例如,class1)的对象包含大量数据(在运行时不会更改)。另一个类(比如 class2)有一个成员变量,它映射到 class1 的一个对象。假设 class1 和 class2 还有其他可变和不可变成员变量。

现在我也想对 class2 的对象进行深度复制。它还会在 class2 中对 class1 对象进行深度复制。但为了节省内存,我想避免这种情况。我该怎么做呢?

class class1:
def __init__(self):
self.largeData = None
self.mutableVar = None
self.immutableVar = None


class class2:
def __init__(self, objc1: class1):
self.objc1 = objc1 # of the type class1
self.mutableVar = None
self.immutableVar = None


c1_1 = class1()
c1_2 = class1()

c2_1 = class2(c1_1)

c2_1Copy = copy.deepcopy(c2_1)
# i want c2_1Copy to reference the same objc1 as c2_1,
# but different mutablevar and immutablevar

c2_2 = class2(c1_2) # Note: cannot use static variable

请帮我解决这个问题...
提前致谢

最佳答案

使用 __deepcopy__ Hook 方法自定义对象的深度复制方式。

import copy


class LargeDataContainer:
def __init__(self):
self.data = "x" * 800


class Thing:
def __init__(self, large_data: LargeDataContainer):
self.large_data = large_data
self.x = [1, 2, 3]

def __deepcopy__(self, memo):
new_inst = type(self).__new__(self.__class__) # skips calling __init__
new_inst.large_data = self.large_data # just assign

# rinse and repeat this for other attrs that need to be deepcopied:
new_inst.x = copy.deepcopy(self.x, memo)
return new_inst


ldc = LargeDataContainer()

t1 = Thing(ldc)
t2 = copy.deepcopy(t1)
assert t1 is not t2
assert t1.large_data is t2.large_data
assert t1.x is not t2.x

关于python - 如何在Python中选择性地深复制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56478210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com