Difference between shallow copying and Deep copying with an example in c++?

link|improve this question
Welcome to SO, i suggest first you need read FAQ – Soner Gönül Jun 28 '11 at 12:33
1  
First hit with Google Not too difficult? – mrm Jun 28 '11 at 12:33
Try searching next time. Possible duplicate of stackoverflow.com/questions/184710/… – Harpyon Jun 28 '11 at 12:33
feedback

closed as not constructive by Neil Knight, Matteo Italia, Armen Tsirunyan, tibur, BЈовић Jun 28 '11 at 12:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

class X
{
   int * p;
   public:
   X() { p = new int;}
   ~X() {delete p; }
};

A shallow copy of an object X would be such a copy where the pointer is simply copied, that is, two pointers will point to the same int. A deep copy would we one in which the copied object allocates own memory and copies (from the deep :)) the value of the other object's pointer's poinee

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.