Tagged Questions
The deep-copy tag has no wiki summary.
22
votes
2answers
24k views
deep copy NSMutableArray in Objective-C?
Is there any built-in function in Objective-C allows me to deep copy a NSMutableArray?
I looked around, some people say [aMutableArray copyWithZone:nil] works as deep copy. But I tried it seems no.
...
18
votes
7answers
37k views
How to clone ArrayList and also clone its contents?
How can I clone ArrayList but also clone its items in Java 1.5?
For example I have:
ArrayList<Dog> dogs = getDogs();
ArrayList<Dog> clonedList = ....something to do with dogs....
And I ...
14
votes
3answers
1k views
copy.deepcopy vs pickle
I have tree structure of widgets e.g. collection contains models and model contains widgets
I wan to copy whole collection, copy.deepcopy is faster in comparison to 'pickle and de-pickle'ing the ...
11
votes
1answer
4k views
Deep copy of PHP array of references
So $array is an array of which all elements are references.
I want to append this array to another array called $results (in a loop), but since they are references, PHP copies the references and ...
10
votes
4answers
4k views
What's the best way to deep copy a hash of hashes in Perl?
Before I start coding this myself and reinventing the wheel, how do you copy a hash of hashes without duplicating the hashrefs?
I'm reading a hash of hash of hashes via Config::General. i.e., the ...
10
votes
3answers
2k views
What's the best way to make a deep copy of a data structure in Perl?
Given a data structure (e.g. a hash of hashes), what's the clean/recommended way to make a deep copy for immediate use? Assume reasonable cases, where the data's not particularly large, no complicated ...
9
votes
3answers
437 views
Deep copy of a record with R1:=R2, or Is there good way to implement NxM matrix with record?
I'm implementing a N x M matrix (class) with a record and an internal dynamic array like below.
TMat = record
public
// contents
_Elem: array of array of Double;
//
procedure ...
9
votes
4answers
2k views
Copy constructor: deep copying an abstract class
Suppose I have the following (simplified case):
class Color;
class IColor
{
public:
virtual Color getValue(const float u, const float v) const = 0;
};
class Color : public IColor
{
public:
...
9
votes
1answer
2k views
Does Scala AnyRef.clone perform a shallow or deep copy?
In Scala, does AnyRef.clone perform a shallow or deep copy?
7
votes
2answers
148 views
Merge JS objects without overwriting
Suppose you have two objects:
var foo = {
a : 1,
b : 2
};
var bar = {
a : 3,
b : 4
}
What's the best way to merge them (and allow deep merging) to create this:
var foobar = {
...
7
votes
6answers
246 views
“CopyConstructible” requirement for C++ stl container element
Regarding to the requirement for C++ stl container element, the standard says: the element type should be CopyConstructible, and there is a table for CopyConstructible requirements. Also by various ...
7
votes
4answers
376 views
Deep Cloning of Java objects (Not beans)
The project that I am currently working on has lot of objects that are serialized in order to get a deep copy of the the existing object. This works fine untill we have multiple calls at runtime in ...
7
votes
7answers
385 views
When does it make sense for a Java object to be Serializable but not Cloneable?
If a Java class implements the Serializable interface but does not have a public clone() method, it is usually possible to create a deep copy like this:
class CloneHelper {
...
6
votes
2answers
225 views
Structure deep copy
This may be a very basic question but somehow it got me tricked... when I write test code, it seems to work, but something is going wrong in production.
// Header file
#define length 100
typedef ...
6
votes
7answers
2k views
Create a Deep Copy in C#
I want to make a deep copy of an object so I could change the the new copy and still have the option to cancel my changes and get back the original object.
My problem here is that the object can be ...
5
votes
1answer
135 views
python multiprocessing arguments: deep copy?
from multiprocessing import Process
# c is a container
p = Process(target = f, args = (c,))
p.start()
I assume a deep copy of c is passed to function f because shallow copy would make no sense in ...
5
votes
4answers
276 views
Totally basic Javascript reference question
The following in a Javascript console:
var a = {'foo': []};
var b = {};
for (var key in a) {
b[key] = a[key];
}
a['foo'].push(1);
console.log(b);
Yields:
Object foo=[1]
I want to make a ...
4
votes
2answers
97 views
How much information do array variables share?
How much information is copied/shared when I assign one array variable to another array variable?
int[] a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
int[] b = a;
a[0] = 42;
writefln("%s %s", a[0], b[0]); // ...
4
votes
4answers
118 views
How to deep copy a matrix in C#?
I got a List<List<CustomClass>>, where CustomClass is a reference type.
I need to make a full deep copy of this matrix into a new one. Since I want a deep copy, each CustomClass object in ...
4
votes
3answers
152 views
Does deepcopy use copy-on-write?
I wonder if the python interpreter applies copy on write strategy when doing a deepcopy on mutable objects.
Also, I'd like to know if the deepcopy is performed also on nonmutable object (that would ...
4
votes
1answer
168 views
Deep copy of 2D array with all elements
I am making a basic game using a 2D array (4x4) in which the elements (of object type with ints 1 to 16) must be switched around to reach a particular goal state, this state must be compared with the ...
4
votes
3answers
286 views
Does LINQ new up memory when creating returns
Does LINQ actually perform a deep copy of the results to a different list/array/etc, or does it simply give me a list/array/etc. composed of references to the original?
4
votes
1answer
1k views
deep copy of doctrine record
I want to make a deep copy/clone of a doctrine record in a symfony project.
The existing copy($deep)-method doesn't work properly with $deep=true.
For an example let's have a look at a classroom ...
4
votes
2answers
200 views
Problem with deepcopy?
Source
from copy import deepcopy
class Field(object):
def __init__(self):
self.errors = []
class BaseForm(object):
pass
class MetaForm(type):
def __new__(cls, name, bases, ...
4
votes
6answers
6k views
C Programming. How to deep copy a struct?
I have the following two structs where "child struct" has a "rusage struct" as an element.
Then I create two structs of type "child" let's call them childA and childB
How do I copy just the rusage ...
4
votes
5answers
2k views
How to deep clone interconnected objects in C#?
What is the best way to deep clone an interconnected set of objects? Example:
class A {
B theB; // optional
// ...
}
class B {
A theA; // optional
// ...
}
class Container {
...
3
votes
1answer
203 views
Python: deeply copy ast node tree
I'm trying to use deepcopy (from the copy module) to deeply copy a node tree from the ast module.
This doesn't seem to work. I'm getting strange errors like TypeError: required field "name" missing ...
3
votes
1answer
122 views
How to perform deep copying of struct with CUDA?
Programming with CUDA I am facing a problem trying to copy some data from host to gpu.
I have 3 nested struct like these:
typedef struct {
char data[128];
short length;
} Cell;
typedef ...
3
votes
1answer
245 views
TypeError: cannot deepcopy this pattern object
Trying to understand this error in my "Variable" class.
I was hoping to store a sre.SRE_Pattern in my "Variable" class. I just started copying the Variable class and noticed that it was causing all ...
3
votes
3answers
239 views
How to implement deep copy or clone of an object that has circular references?
I have such hierarchy:
class Sphere;
class Cube;
class SpherePair;
class Entity {};
class Cube : public Entity {
public:
list<Sphere*> spheres_;
};
class Sphere : public Entity {
public:
...
3
votes
2answers
487 views
How do I make a Deep Copy of a UIElement?
So I have a printing component that serves a Silverlight application. Other modules in this program have the ability to signal the printing component and pass it a UI Element, which the printing ...
3
votes
2answers
1k views
how to do true deep copy for NSArray and NSDictionary with have nested arrays/dictionary?
Question: Is there a way to use existing objective-c methods to do a full deep copy of a NSDictionary or NSArray, that themselves have nested dictionaries or arrays within them?
That is I have read ...
3
votes
5answers
88 views
Why didn't Microsoft make a deep cloning function in the BCL?
They obviously used it somewhere, why didn't they give as such a method?
(Even if they didn't use it anywhere, they still could have given us such a method).
3
votes
2answers
36 views
What do I put in the visit dict passed to my user-defined __deepcopy__ function?
I need to define my own deepcopy function for one of my classes. The documentation says that the function __deepcopy__() is passed a memo dictionary for tracking which objects have already been ...
3
votes
1answer
196 views
Deep copy of a derived python object
I have an object in python that is derived from QtGui.QGraphicsPixmapItem with a few basic attributes and methods. After calling deepcopy on a reference to this object, I get an error saying that ...
3
votes
2answers
1k views
Deep Copy a .NET Class Instance Without Serialization
I am using an instance class from a third-party DLL, and I need to do a deep copy on a particular instance. The class is not marked as Serializable, and therefore I can not use this suggested method ...
3
votes
2answers
278 views
Does Enumerable.Repeat() do a deep copy?
If I use the following:
var myList = Enumerable.Repeat(myCustomObject, 2);
Will the Second element in the list be a deep copy of the first one?
Note: myCustomObject can be any Object
Edit: ...
3
votes
3answers
637 views
Deep Copy ASP.NET GridView
I'm creating a custom control for a group of peers and I'm running into a road block. The purpose of the control is to provide an easy way to implement grids with nesting, sorting, etc.
To create the ...
3
votes
2answers
2k views
What is the easiest way to deeply clone (copy) a mutable Scala object?
What is the easiest way to deeply clone (copy) a mutable Scala object?
3
votes
3answers
722 views
Efficient cloning of cached objects
We have an application that performs comparisons on data objects to determine if one version of the object is different than another. Our application also does some extensive caching of these objects, ...
3
votes
2answers
2k views
How to perform a deep copy of an object not marked as serializable (in C#)?
I am attempting to create a Clipboard stack in C#. Clipboard data is stored in System.Windows.Forms.DataObject objects. I wanted to store each clipboard entry (IDataObject) directly in a Generic ...
2
votes
2answers
45 views
How can I create a deep clone of a DB object in Django?
I am trying to create a complete copy of a survey instance, which has several sections, and each section has several questions and finally each question has several options. I am using standard django ...
2
votes
2answers
80 views
Copy constructor v. implementing Cloneable interface
In terms of "best practices", which methodology is preferred for creating a "deep copy" of an object?
2
votes
3answers
124 views
deep copy of object which hold references to other objects
I have a "sum" class which holds two references to existing ints (say). I want to create a "copy" method which deep copies the ints. I thought I would never have to manually delete objects in my code, ...
2
votes
2answers
219 views
Deep copy of dictionaries gives Analyze error in Xcode 4.2
I have the following method in a NSDictionary category, to do a deep copy, which works fine.
I just upgraded from Xcode 4.1 to 4.2, and the Analyze function gives two analyzer warnings for this code, ...
2
votes
2answers
120 views
How do you deep clone a persistent entity in ColdFusion ORM?
I have a persistent entity that I'm using as a template:
Company
Locations
Departments
Employees
In other words, a Company contains many Locations, which contains many ...
2
votes
1answer
56 views
Performant way to clone rather large subtree in database?
Currently I'm trying to performance-optimize a code in a Windows Forms .NET 2.0 application that does copy operations on hierarchical database objects.
Here is an example structure:
Each object in ...
2
votes
1answer
95 views
Python: copying objects with copy.deepcopy or writing my own copy
Currently I am using the copy module to create a copy of some object that I have.
Under certain conditions (that occur frequently), I will need to create possibly several copies of the original ...
2
votes
3answers
212 views
VB.NET, Is Object Returned by Reference from Function
This should be a fairly common question, but I haven't found a straightforward answer anywhere.
If I instantiate an object within a function in VB.NET and return it, does it return it be reference or ...
2
votes
2answers
66 views
Simple question about clone in javascript
I have a Point
function Point(x, y) {
this.x = x;
this.y = y;
};
As you see, it's mutable. So I can change it properties, like
var p = new Point(2, 3);
p.x = 6;
I want to add clone ...