For example:
for (i=0;i<10;i++)
{
myclass = new myclass();
// do stuff with myclass
}
Questions:
- How will all the memory that has been allocated by doing 10 allocations in this case be retrieved?
- What will my memory footprint be at the end of execution?
- With delete functionality in C++, one had more control over this but in this case, for the second iteration, myclass would simply take a new allocation and move on?