show/hide this revision's text 2 added 2 characters in body

When returning objects from a class, when is the right time to release the memory?

Example,

class AnimalLister 
{
  public:
  Animal* getNewAnimal() 
  {
    Animal* animal1 = new Animal();
    return animal1;
  }
}

If i create an instance of Animal Lister and get Animal reference from it, then where am i supposed to delete it?

int main() {
  AnimalLister al;
  Animal a1, a2;
  *a1, *a2;
  a1 = al.getNewAnimal();
  a2 = al.getNewAnimal();
}

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.

show/hide this revision's text 1

Returning Objects in C++

When returning objects from a class, when is the right time to release the memory?

Example,

class AnimalLister 
{
  public:
  Animal* getNewAnimal() 
  {
    Animal* animal1 = new Animal();
    return animal1;
  }
}

If i create an instance of Animal Lister and get Animal reference from it, then where am i supposed to delete it?

int main() {
  AnimalLister al;
  Animal a1, a2;
  a1 = al.getNewAnimal();
  a2 = al.getNewAnimal();
}

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.