on C/C++ , A deep copy duplicates the object or variable being pointed to so that the destination (the object being assigned to) receives it’s own local copy
0
votes
1answer
46 views
deep copy for a graph using hashmap does not work
I have a directed graph having edges as Map<E,Pair<V>>, and vertices as <V>.
I want to have a copy of this graph and make some changes in the copy while the original graph does not ...
10
votes
2answers
83 views
std::string copy constructor NOT deep in GCC 4.1.2?
I wonder if i misunderstood something: does a copy constructor from std::string not copy its content?
string str1 = "Hello World";
string str2(str1);
if(str1.c_str() == str2.c_str()) // Same ...
0
votes
2answers
15 views
FireBug (or any other method) - How to copy all CSS styling from DIV and child divs?
I am trying to copy all the css styling from a div (and all child/inner divs).
I mostly user FireBug and am hoping there is a simple way to do this so I don't have to go through thousands of lines of ...
4
votes
4answers
75 views
Perl: How to deep copy a blessed object?
I'm looking to do a deep (at this point, shallow may suffice) copy of a blessed object.
Foo Class
package Foo;
our $FOO = new Foo; # initial run
sub new {
my $class = shift;
my $self = ...
1
vote
1answer
27 views
Angular JS: angular.copy crashes the browser when an object references another object
I have the following JavaScript/Angular code:
var a = {};
var b = {};
a.ref = b;
b.ref = a;
angular.copy(a);
When angular.copy fires, the browser locks up. I'm assuming this is because the copy ...
2
votes
2answers
59 views
Deep Copy of a Generic Type in Java
How does deep copies (clones) of generic types T, E work in Java? Is it possible?
E oldItem;
E newItem = olditem.clone(); // does not work
-1
votes
0answers
19 views
How can I make a deep copy from an array reference in Java?
public java.awt.Point getVertex(int index){
return new java.awt.Point(vertices[index].x, vertices[index].y);}
I'm attempting to make a deep copy of this vertex to return, as is required by my ...
4
votes
0answers
159 views
Object copying in delphi
I have a complex object to deep copy (lots of arrays, objects, pointers, layers of layers of inheritance, hundreds of members of various types and more), and re-creating it through Delphi's Assign ...
1
vote
2answers
40 views
Copying an array of objects into another array in javascript
How can I copy every element of an array (where the elements are objects), into another array, so that they are totally independent? I don't want changing an element in one array to affect the other.
0
votes
1answer
27 views
Cocos2d: child already added, adding 2 similar children without deep copy
Cocos2d does not allow two similar objects to be added as child of self is there another way of adding a duplicate without implementing deep copy in my DigBackground class? and doing (DigBackground ...
1
vote
1answer
59 views
Copy Constructor, Deep Copy, Constant Reference
Copy Constructor, Deep Copy, Constant Reference
Q. In terms of Memory Management.
Copy constructor for a class A has the form A(const A& a)
Why is the parameter passed by reference?
Explain why ...
-1
votes
0answers
53 views
C# deep copying objects with circular references [closed]
Edit I've posted this over on CodeReview like Henk requested.
I've found a good example of how to do this in Java and how you can get the same behavior in c#, so I've made made an attempt at this:
...
2
votes
1answer
57 views
deep copy of a generic list
I want to make a deep copy of a generic list in Java. How could I improve this code?
public interface Deep{}
public class Class1() implements Deep{
public Class1(Class1 o){
...
0
votes
1answer
29 views
Hibernate object tree outside transaction?
I'm implementing a kind of JobProcessor that takes long running jobs. These Jobs use information, basically Page, PageField and PageRelation, that define a tree of pages and each page has its own ...
2
votes
0answers
59 views
About Deep Copy and Serialization
I have read a lot about deep copying and serialization in Java List, Map, etc, but I did not find good answers to a some questions. I care for time and performance, so I am looking for a compromise. I ...
0
votes
1answer
49 views
Deep copy between two 2D Arrays in Processing
For a project i'm working on, I have two grids formed by 2D Arrays, one of which allows the user to draw an image into it, the other displays the last image submited. However my code is making a ...
2
votes
0answers
65 views
Deep Copy of Lists of Custom Objects
Say I have a list of applications, described as a custom object. I decided to do a deepcopy of the original application list, so that I could have one list that acts like a pool of available ...
0
votes
1answer
61 views
Lazy copying - how to create a deep copy from shallow copy
I have a class which is using lazy copying - when a copy constructor is called, it creates shallow copy and when one method is called it creates a deep copy and add some more data.
I'm stuck in part ...
0
votes
1answer
24 views
How to Provide a Consistent Interface: Deep-Copy OpenSSL structs or Document Distinct Cases?
I am developing an application that performs performs cryptographic tasks. It uses OpenSSL for those tasks and the interface is similar to that of libcurl. If unfamiliar, it looks like this:
...
1
vote
1answer
44 views
Is there a better way to deep copy a UIWebView?
I managed to deep copy a UIWebView by loading the NSURLRequest in a new UIWebView.
I also managed to copy the "scrollTo" position using javascript.
Now I am looking at copying the history and probably ...
0
votes
3answers
142 views
Java clone() method using new keyword and a copy constructor instead of super.clone()
When searching the net for possibilities how to make a deep copy of an object polymorphically, I found a solution that claims to solve many issues with the clone() method, e.g. the impossibility to ...
3
votes
4answers
123 views
Is the Java clone() method the only way to achieve polymorphic cloning?
I need to equip my class with polymorphic cloning (deep copy), i.e. I need something like this to work:
SuperType original = new SubType();
SuperType copy = original.clone();
where original.clone() ...
0
votes
2answers
53 views
Returning self.__dict__ from a method
I am working with a nice little python module from a third party, and I ran across a bit that has got my brain all twisted, and I'm mostly concerned with data integrity.
Quick summary: there is a ...
0
votes
2answers
175 views
Understanding Effective Java deep copy example
In Effective Java, 2nd Edition, Item 11 one can find the following deep copy example:
public class HashTable implements Cloneable {
private Entry[] buckets = ...;
private static class Entry ...
2
votes
1answer
89 views
Python: Implementation of shallow and deep copy constructors
It is in most of the situations easy to implement copy constructors (or overloaded assignment operator) in C++ since there is a concept of pointers. However, I'm quite confused about how to implement ...
0
votes
2answers
42 views
Deep Copy is not working
in the follwing example am doing deepcopy, every thing works fine but when the obj2 goes out of scope, destructor is calling and it is getting crash inside destructor so please help what is wrong with ...
7
votes
5answers
434 views
Java, is this a Deep copy?
I cant seem to get a clear precise answer by reading any of the similar questions, I'm trying to deep Clone an object in Java using a copy constructor is this a deep copy:
public class Tile{
...
-3
votes
2answers
48 views
Deep Copying Error [closed]
Dea All,
I have the following:
class test {
int x = 6;
int y = 7;
private int getX() {
return x;
}
private int getY() {
return y;
}
public test copy() ...
2
votes
2answers
102 views
Dynamic Arrays, Destructor, Deep Copying help needed
Okay, so the here is things that I still need to do. I am having some serious problems with syntax. I don't know why I am getting an error when I try to declare a dynamically allocated array. It would ...
0
votes
0answers
32 views
Mutable deep-copy of a NSMutableDictionary
First of all I found something similar:
deep mutable copy of a NSMutableDictionary
but it didn't solve my problem.
I have a NSMutableDictionary as a template.
NSMutableDictionary ...
4
votes
1answer
91 views
How to manually create a deep copy
Following this site: http://www.csharp411.com/c-object-clone-wars/
I decided to manually create a deep copy of my class (following site 1. Clone Manually). I implemented the clone interface and any ...
0
votes
6answers
72 views
Why does copy of the List still change properties in the original List using C#
Lets say I have this class
public class Employee
{
public string FirstName { get; set; }
public string LastName { get; set; }
public bool isActive { get; set; }
}
And use it like this:
...
3
votes
1answer
101 views
Is it fine to use JSON.stringify for deep comparisons and cloning?
After attempting several implementations for deep comparison and copying for JSON-serializable objects, I've noticed the fastest often are just:
function deep_clone(a){
return ...
1
vote
1answer
68 views
Shallow copy and deep copy in C
I tried googling this but only objected oriented languages pop up as results.
From my understanding a shallow copy is copying certain members of a struct.
so lets say a struct is
typedef struct ...
2
votes
4answers
62 views
Modify new collection without touching the original one
My goal is to get a copy of collection with specified item removed from it without touching the items of original collection. I have the following class:
public class Foo
{
public string Name { ...
0
votes
3answers
78 views
Weird behavior of event handlers when deep cloning an object
First off, sorry for not being able to come up with a better title. I tried, though.
I have a class like this
public class GameBoard : ICloneable {
private bool _isCloned;
public ...
1
vote
3answers
106 views
How to deep copy classes with traits mixed in
Here's some sample scala code.
abstract class A(val x: Any) {
abstract def copy(): A
}
class b(i: Int) extends A(i) {
override def copy() = new B(x)
}
class C(s: String) extends ...
0
votes
1answer
66 views
copying a multidimensional array via serialization
I intend to copy a three-dimensional array via serialization, using the following class:
public class Serializer {
public byte[] serialize(Object obj) throws IOException {
...
0
votes
1answer
280 views
Deep copy of doubly linked list [closed]
I am having trouble doing a deep copy of my doubly linked list. This is a homework assignment, so Id like to know why my code is not working, rather than get working code that I dont understand.
Here ...
1
vote
1answer
262 views
deep copy for C++ boost::shared_ptr
I am trying to do deep copy for C++ boost::shared_ptr.
struct A{
boost::shared_ptr<const Data> dataPtr;
A(const A& aSource) {
dataPtr.reset(new const Data);
*dataPtr = ...
0
votes
2answers
90 views
How to deep clone an object list that contains several objects in java?
Say there is an EmployeeList that contains 5 Employee object.
I want to perform a clone of that EmployeeList to make a new EmployeeList, and I am wondering how should I do that?
So the following is ...
1
vote
1answer
66 views
Holding reference to static class while deep clone
I'm working on app for managing tasks. Every task has its own status. And every status has to be easily assignedable (like enum -- task1.status = statuses.started). And every status has to know its ...
3
votes
2answers
134 views
Java: deepcopy list entry without instancing a new list
I've got a little problem while doing my programming task. I want to read some lines from a file (no problem so far) and tokenize it. Every line has about 4 tokens and each of them should find a place ...
0
votes
2answers
56 views
Is this a right approach to do a deep copy in java for benchmarking memory?
Since System.arraycopy() and clone() does only shallow copying, I wonder if this approach would work for doing a deep copy.
ByteArrayOutputStream bos = new ByteArrayOutputStream();
...
0
votes
0answers
132 views
Bug in deep copy constructor binary search tree
I am having a serious issue trying to locate the bug in my copy constructor for a binary search tree (deep copy). I've traced this code over and over and can't seem to locate the issue. In fact, the ...
4
votes
5answers
169 views
C++ deep copying with objects
Good morning. I am having trouble understanding the logic behind deep and shallow copying with objects in C++ in a shared project, so I have created the following example.
int main() {
...
4
votes
2answers
140 views
Deep clone without some fields
Let's I have next javascript object. Now I want clone it but without some fields. For example I want cloned object without field "lastName" and "cars.age"
Input
{
"firstName":"Fred",
...
2
votes
1answer
81 views
Deep version of sys.getsizeof
I want to calculate the memory used by an object. sys.getsizeof is great, but is shallow (for example, called on a list, it would not include the memory taken by the list's elements).
I'd like to ...
0
votes
0answers
37 views
Deep copy of Object in Java [duplicate]
Possible Duplicate:
Deep Copy an Object
How do you make a deep copy of an object in Java?
I am bit confused through copy vs clone in Java.
public class MyObject{
List<MyChild> ...
3
votes
2answers
177 views
Ruby: object deep copying
I'm looking at some techniques to deep-copy objects in Ruby (MRI 1.9.3).
I came across the following example, but I'm not sure about the #dup method implementation.
I tested it and it does work, but I ...




