Returning Objects in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:04:27Z http://stackoverflow.com/feeds/question/204396 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/204396/returning-objects-in-c 17 Returning Objects in C++ bibstha 2008-10-15T11:29:35Z 2009-08-14T15:22:00Z <p>When returning objects from a class, when is the right time to release the memory?</p> <p>Example,</p> <pre><code>class AnimalLister { public: Animal* getNewAnimal() { Animal* animal1 = new Animal(); return animal1; } } </code></pre> <p>If i create an instance of Animal Lister and get Animal reference from it, then where am i supposed to delete it?</p> <pre><code>int main() { AnimalLister al; Animal *a1, *a2; a1 = al.getNewAnimal(); a2 = al.getNewAnimal(); } </code></pre> <p>The problem here is AnimalLister doesnot have a way to track the list of Animals Created, so how do i change the logic of such code to have a way to delete the objects created.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204408#204408 23 Answer by Chris Jester-Young for Returning Objects in C++ Chris Jester-Young 2008-10-15T11:34:21Z 2008-10-15T11:34:21Z <p>I advise returning a <code>std::tr1::shared_ptr</code> (or <code>boost::shared_ptr</code>, if your C++ implementation does not have TR1) instead of a raw pointer. So, instead of using <code>Animal*</code>, use <code>std::tr1::shared_ptr&lt;Animal&gt;</code> instead.</p> <p>Shared pointers handle reference tracking for you, and delete the object automatically if there are no references left to it.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204410#204410 7 Answer by Igor Semenov for Returning Objects in C++ Igor Semenov 2008-10-15T11:34:33Z 2008-10-15T11:34:33Z <p>The simpliest way is to return smart pointer instead of regular pointers. For example:</p> <pre><code>std::auto_ptr&lt; Animal&gt; getNewAnimal() { std::auto_ptr&lt; Animal &gt; animal1( new Animal() ); return animal1; } </code></pre> <p>If you are able to use TR1 or Boost, you can also use shared_ptr&lt;>.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204421#204421 7 Answer by itsmatt for Returning Objects in C++ itsmatt 2008-10-15T11:41:49Z 2008-10-15T11:41:49Z <p>Kind of a classic issue with pointers and allocated memory. It's about responsibility - who is responsible for cleaning up the memory allocated by the AnimalLister object.</p> <p>You could store off a pointer to each of those allocated Animals in the AnimalLister itself and have it clean things up.</p> <p>But, you do have a couple of pointers to Animals sitting there in main() that would be referencing memory that was deleted.</p> <p>One of the reasons I think the reference counting solutions work better than rolling your own solution.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204422#204422 2 Answer by brianb for Returning Objects in C++ brianb 2008-10-15T11:42:03Z 2008-10-15T12:00:19Z <p>Or you could follow the COM-ish approach, and apply simple reference counting.</p> <ul> <li>When you create the object, give it a reference value of 1 instantly</li> <li>When anyone gets a copy of the pointer, they AddRef()</li> <li>When anyone gives up their copy of the pointer, they Release()</li> </ul> <p>If the reference count hits 0, the object deletes itself.</p> <p>Its ultimately what the shared_ptr does under the hood, but it gives you more control over whats going on, and in my experience easier to debug. (Its also very cross-platform).</p> <p>I haven't given shared_ ptr too much of a chance in my development as yet, so that may serve your purposes perfectly.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204466#204466 4 Answer by gbjbaanb for Returning Objects in C++ gbjbaanb 2008-10-15T12:07:38Z 2008-10-15T12:07:38Z <ol> <li>shared_ptr (which works well),</li> <li>return a simple pointer and tell the user of your class that it is their animal now, and they have the responsibility to delete it when finished,</li> <li><p>implement a 'freeAnimal(Animal*)' method that makes it obvious that deletion of the animal pointer is required.</p></li> <li><p>An alternative way is to simply return the animal object directly, no pointers, no calls to new. The copy constructor will ensure the caller gets their own animal object that they can store on the heap or stack, or copy into a container as they desire.</p></li> </ol> <p>So:</p> <pre><code>class AnimalLister { Animal getAnimal() { Animal a; return a; }; // uses fast Return Value Optimisation }; Animal myownanimal = AnimalLister.getAnimal(); // copy ctors into your Animal object </code></pre> <p>RVO means that returning the object instead of the pointer is actually faster (as the compiler doesn't create a new object and copies it into the caller's object, but uses the caller's object directly).</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/204542#204542 2 Answer by martinsb for Returning Objects in C++ martinsb 2008-10-15T12:36:50Z 2008-10-15T12:36:50Z <p>The time to release the memory occupied by an object is when you don't need that particular object any more. In your particular case, the user of a class AnimalLister requested a pointer to a new allocated object of class Animal. So, he's the one that is responsible for freeing memory when he does need that pointer/object any more.</p> <pre><code>AnimalLister lister; Animal* a = lister.getNewAnimal(); a-&gt;sayMeow(); delete a; </code></pre> <p>In my opinion, there's no need to over-engineer anything in this case. AnimalLister is just a factory that creates new Animal objects and that's it.</p> http://stackoverflow.com/questions/204396/returning-objects-in-c/418252#418252 4 Answer by Eclipse for Returning Objects in C++ Eclipse 2009-01-06T21:29:31Z 2009-08-14T15:22:00Z <p>Depending on your usage, there are a couple of options you could go with here:</p> <ol> <li><p>Make a copy every time you create an animal:</p> <pre><code>class AnimalLister { public: Animal getNewAnimal() { return Animal(); } }; int main() { AnimalLister al; Animal a1 = al.getNewAnimal(); Animal a2 = al.getNewAnimal(); } </code></pre> <p>Pros:</p> <ul> <li>Easy to understand. </li> <li>Requires no extra libraries or supporting code.</li> </ul> <p>Cons:</p> <ul> <li>It requires <code>Animal</code> to have a well-behaved copy-constructor.</li> <li>It can involve a lot of copying if <code>Animal</code> is larg and complex, although <a href="http://www.efnetcpp.org/wiki/RVO" rel="nofollow">return value optimization</a> can alleviate that in many situations.</li> <li>Doesn't work if you plan on returning sub-classes derived from <code>Animal</code> as they will be <a href="http://cplusplusgems.blogspot.com/2005/10/what-is-slicing-problem-class-base.html" rel="nofollow">sliced</a> down to a plain <code>Animal</code>, losing all the extra data in the sub-class. </li> </ul></li> <li><p>Return a <code>shared_ptr&lt;Animal&gt;</code>:</p> <pre><code>class AnimalLister { public: shared_ptr&lt;Animal&gt; getNewAnimal() { return new Animal(); } }; int main() { AnimalLister al; shared_ptr&lt;Animal&gt; a1 = al.getNewAnimal(); shared_ptr&lt;Animal&gt; a2 = al.getNewAnimal(); } </code></pre> <p>Pros:</p> <ul> <li>Works with object-hierarchies (no object slicing).</li> <li>No issues with having to copy large objects.</li> <li>No need for <code>Animal</code> to define a copy constructor.</li> </ul> <p>Cons:</p> <ul> <li>Requires either Boost or TR1 libraries, or another smart-pointer implementation.</li> </ul></li> <li><p>Track all <code>Animal</code> allocations in <code>AnimalLister</code> </p> <pre><code>class AnimalLister { vector&lt;Animal *&gt; Animals; public: Animal *getNewAnimal() { Animals.push_back(NULL); Animals.back() = new Animal(); return Animals.back(); } ~AnimalLister() { for(vector&lt;Animal *&gt;::iterator iAnimal = Animals.begin(); iAnimal != Animals.end(); ++iAnimal) delete *iAnimal; } }; int main() { AnimalLister al; Animal *a1 = al.getNewAnimal(); Animal *a2 = al.getNewAnimal(); } // All the animals get deleted when al goes out of scope. </code></pre> <p>Pros:</p> <ul> <li>Ideal for situations where you need a bunch of <code>Animal</code>s for a limited amount of time, and plan to release them all at once.</li> <li>Easily adaptable to custom memory-pools and releasing all the <code>Animal</code>s in a single <code>delete</code>.</li> <li>Works with object-hierarchies (no object slicing).</li> <li>No issues with having to copy large objects.</li> <li>No need for <code>Animal</code> to define a copy constructor.</li> <li>No need for external libraries.</li> </ul> <p>Cons:</p> <ul> <li>The implementation as written above is not thread-safe</li> <li>Requires extra support code</li> <li>Less clear than the previous two schemes</li> <li>It's non-obvious that when the AnimalLister goes out of scope, it's going to take the Animals with it. You can't hang on to the Animals any longer than you hang on the AnimalLister.</li> </ul></li> </ol> http://stackoverflow.com/questions/204396/returning-objects-in-c/524697#524697 0 Answer by BigSandwich for Returning Objects in C++ BigSandwich 2009-02-07T22:12:31Z 2009-02-08T02:03:22Z <p>I really like Josh's answer, but I thought I might throw in another pattern because it hasn't been listed yet. The idea is just force the client code to deal with keeping track of the animals.</p> <pre><code>class Animal { ... private: //only let the lister create or delete animals. Animal() { ... } ~Animal() { ... } friend class AnimalLister; ... } class AnimalLister { static s_count = 0; public: ~AnimalLister() { ASSERT(s_count == 0); } //warn if all animals didn't get cleaned up Animal* NewAnimal() { ++count; return new Animal(); } void FreeAnimal(Animal* a) { delete a; --s_count; } } </code></pre> http://stackoverflow.com/questions/204396/returning-objects-in-c/980645#980645 0 Answer by Amit Kumar for Returning Objects in C++ Amit Kumar 2009-06-11T11:44:04Z 2009-06-11T11:44:04Z <p>In a <a href="http://www.aristeia.com/Papers/resourceReturnProblem.txt" rel="nofollow">thorough discussion by Scott Meyers</a>, he concludes that using shared_ptr or auto_ptr is the best. </p>