What is the difference between a deep copy and a shallow copy?
|
|
Shallow copies duplicate as little as possible. A shallow copy of a collection is a copy of the collection structure, not the elements. With a shallow copy, two collections now share the individual elements. Deep copies duplicate everything. A deep copy of a collection is two collections with all of the elements in the original collection duplicated. |
|||||||
|
|
Breadth vs Depth; think in terms of a tree of references with your object as the root node. Shallow:
Deep:
|
||||
|
In short, it depends on what points to what. In a shallow copy, object B points to object A's location in memory. In deep copy, all things in object A's memory location get copied to object B's memory location. This wiki article has a great diagram. |
||||
|
|
|
Shallow copy: Copies the member values from one object into another. Deep Copy: Copies the member values from one object into another. Example:
|
||||
|
|
|
I haven't seen a short, easy to understand answer here--so I'll give it a try. With a shallow copy, any object pointed to by the source is pointed to by the destination (so that no referenced objects are copied). With a deep copy, any object pointed to by the source is copied into the destination (so there will now be 2 of each referenced object). |
|||
|
|
|
In object oriented programming, a type includes a collection of member fields. These fields may be stored either by value or by reference (i.e., a pointer to a value). In a shallow copy, a new instance of the type is created and the values are copied into the new instance. The reference pointers are also copied just like the values. Therefore, the references are pointing to the original objects. Any changes to the members that are stored by reference appear in both the original and the copy, since no copy was made of the referenced object. In a deep copy, the fields that are stored by value are copied as before, but the pointers to objects stored by reference are not copied. Instead, a deep copy is made of the referenced object, and a pointer to the new object is stored. Any changes that are made to those referenced objects will not affect other copies of the object. |
|||
|
|
'ShallowCopy' points to the same location in memory as 'Source' does. 'DeepCopy' points to a different location in memory, but the contents are the same. |
|||
|
|
|
||||
|
|
{Imagine two objects: A and B of same type _t(with respect to C++) and you are thinking about shallow/deep copying A to B} Shallow Copy: Simply makes a copy of the reference to A into B. Think about it as a copy of A's Address. So, the addresses of A and B will be the same i.e. they will be pointing to the same memory location i.e. data contents. Deep copy: Simply makes a copy of all the members of A, allocates memory in a different location for B and then assigns the copied members to B to achieve deep copy. In this way, if A becomes non-existant B is still valid in the memory. You can choose to do a Shallow Copy ONLY_IF you understand the stakes involved. When you have enormous number of pointers to deal with in C++ or C, doing a shallow copy of an object is REALLY a bad idea. EXAMPLE_OF_DEEP COPY_ An example is, when you are trying to do image processing and object recognition you need to mask "Irrelevant and Repetitive Motion" out of your processing areas. If you are using image pointers, then you might have the specification to save those mask images. NOW... if you do a shallow copy of the image, when the pointer references are KILLED from the stack, you lost the reference and its copy i.e. there will be a runtime error of access violation at some point. In this case, what you need is a deep copy of your image by CLONING it. In this way you can retrieve the masks in case you need them in the future. EXAMPLE_OF_SHALLOW_COPY I am not extremely knowledgeable compared to the users in StackOverflow so feel free to delete this part and put a good example if you can clarify. But I really think it is not a good idea to do shallow copy if you know that your program is gonna run for an infinite period of time i.e. continuous "push-pop" operation over the stack with function calls. If you are demonstrating something to an amateur or novice person (e.g. C/C++ tutorial stuff) then it is probably okay. But if you are running an application such as surveillance and detection system, or Sonar Tracking System, you are not supposed to keep shallow copying your objects around because it will kill your program sooner or later. |
||||
|
|
|
'ShallowCopy' points to the same location in memory as 'Source' does. 'DeepCopy' points to a different location in memory, but the contents are the same. |
|||
|
|
|
|||
|
|
|
In Simple Terms, a Shallow Copy is similar to Call By Reference and a Deep Copy is similar to Call By Value In Call By Reference, Both formal and actual parameters of a function refers to same memory location and the value. In Call By Value, Both formal and actual parameters of a functions refers to different memory location but having the same value. |
|||
|
|
|
Copying ararys : Array is a class, which means it is reference type so array1 = array2 results in two variables that reference the same array. But look at this example:
shallow clone means that only the memory represented by the cloned array is copied. If the array contains value type objects, the values are copied; if the array contains reference type, only the references are copied - so as a result there are two arrays whose members reference the same objects. To create a deep copy—where reference type are duplicated, you must loop through the array and clone each element manually. |
|||||||
|
|
If B and A point to the same memory location If B and A point to different memory locations B memory size is same as A's B has same contents as A's |
|||
|
|