Why this code does not cause memory leaks?
int iterCount = 1000;
int sizeBig = 100000;
for (int i = 0; i < iterCount; i++)
{
std::auto_ptr<char> buffer(new char[sizeBig]);
}
WinXP sp2, Compiler : BCB.05.03
|
|
Why this code does not cause memory leaks?
WinXP sp2, Compiler : BCB.05.03 |
||||||
|
|
|
Because you're (un)lucky. Try doing something like this and see if you get as lucky:
The idea here is that your destructor for The reason is something like this: When you say
|
|||
|
|
|
The auto_ptr will only live for the duration of the loop iteration and will release the object connected to it on iteration completion. The compiler can see that in this case new[] can allocate space in the same way as new - without storing the number of elements anywhere since there's no need to call trivial This is an example of a thing not to do. It's up to the compiler to decide whether to replace new[] with new. Using delete instead of delete[] and vice versa is undefined behaviour. See http://stackoverflow.com/questions/787417/why-would-you-write-something-like-this-intentionally-not-using-delete-on-an for discussion of delete vs delete[]. |
||||||||||
|